Merge master to features/compiler#29425
Merged
brettfo merged 126 commits intofeatures/compilerfrom Aug 22, 2018
Merged
Conversation
Additionally summary documentation and identifier names have been adjusted to swap 'parent loop/switch' with 'corresponding loop/switch'.
Also - improve xml docs.
…ispatcherPriority)
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)) // ```
… to the refout docs (#29404)
Update unix contributing docs
Instructions can be found in the README file under src/Tools/CompilerBenchmarks.
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
approved these changes
Aug 22, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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 --forceOnce all conflicts are resolved and all the tests pass, you are free to merge the pull request.