Skip to content

Merge master to features/compiler#29425

Merged
brettfo merged 126 commits intofeatures/compilerfrom
merges/master-to-features/compiler
Aug 22, 2018
Merged

Merge master to features/compiler#29425
brettfo merged 126 commits intofeatures/compilerfrom
merges/master-to-features/compiler

Conversation

@dotnet-bot
Copy link
Copy Markdown
Collaborator

This is an automatically generated pull request from master into features/compiler.

git fetch --all
git checkout merges/master-to-features/compiler
git reset --hard upstream/features/compiler
git merge upstream/master
# Fix merge conflicts
git commit
git push merges/master-to-features/compiler --force

Once all conflicts are resolved and all the tests pass, you are free to merge the pull request.

CyrusNajmabadi and others added 30 commits June 30, 2018 20:05
Additionally summary documentation and identifier names have been adjusted to swap
'parent loop/switch' with 'corresponding loop/switch'.
jaredpar and others added 15 commits August 17, 2018 15:29
Updated the docs based on my experiences getting the emit tests running
on Linux.
Added Newtonsoft.Json to exclusion list
Update 'use block body' to be better understand async methods.
…, SelectMany and Where invocations)

Adds one of the refactorings mentioned in #8953

```
//
// INPUT:
//   foreach (var n1 in c1)
//      foreach (var n2 in c2)
//          if (n1 > n2)
//              yield return n1 + n2;
//
// OUTPUT:
//   c1.SelectMany(n1 => c2.Where(n2 => n1 > n2).Select(n2 => n1 + n2))
//
```
Update unix contributing docs
Instructions can be found in the README file under src/Tools/CompilerBenchmarks.
mavasani and others added 6 commits August 21, 2018 11:42
Add refactoring to convert foreach loop into linq invocations (Select…
Restore the machinery for enabling language features by feature flags
Add new DiagnosticAnalyzer API for Symbol Start/End analysis
…features/compiler

# Conflicts:
#	src/Compilers/Core/Portable/CodeAnalysisResources.resx
#	src/Compilers/Core/Portable/PublicAPI.Unshipped.txt
@brettfo brettfo merged commit b521125 into features/compiler Aug 22, 2018
@brettfo brettfo deleted the merges/master-to-features/compiler branch August 22, 2018 22:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.