Merge features/compiler#29476
Merged
333fred merged 256 commits intodotnet:features/null-operator-enhancementsfrom Aug 24, 2018
Merged
Merge features/compiler#29476333fred merged 256 commits intodotnet:features/null-operator-enhancementsfrom
333fred merged 256 commits intodotnet:features/null-operator-enhancementsfrom
Conversation
# Conflicts: # src/Features/CSharp/Portable/CSharpFeaturesResources.resx
* Fix code style issues in tests * Fix handling of multiple containing generic types, and add a test * Fix handling of unrelated type hierarchies with no shared type parameters * Add a skipped test and bug for type hierarchies with shared type parameters (see dotnet#27950)
Fixes edge cases where variable identifier name is reused in the initializer as first part of member access qualification. Example: SomeEnum SomeEnum = SomeEnum.EnumVal1 Fixes dotnet#26894
Additionally summary documentation and identifier names have been adjusted to swap 'parent loop/switch' with 'corresponding loop/switch'.
Update 'use block body' to be better understand async methods.
…/compiler Merge master to features/compiler
…, SelectMany and Where invocations) Adds one of the refactorings mentioned in dotnet#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 (dotnet#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
…/compiler Merge master to features/compiler
…atures/compiler * dotnet/features/compiler: (183 commits) Document dotnet#13686 (dotnet#29416) Fix xml doc-comment resolution warnings PR feedback Add a perf benchmark for the compiler Emit phase (dotnet#29323) PR feedback Add documentation for the ProduceOnlyReferenceAssembly msbuild option to the refout docs (dotnet#29404) PR feedback Address PR feedback Expose refonly as an msbuild property (dotnet#29352) Add refactoring to convert foreach loop into linq invocations (Select, SelectMany and Where invocations) disable bad test Fix build error Restore the machinery for enabling language features by feature flags Assert message should sort diagnostics when possible (dotnet#29151) Update unix contributing docs Added Newtonsoft.Json to exclusion list Fix generation of compiler binding redirects (dotnet#29331) fixing hintspan size when Sub has attributes (dotnet#29115) Use Microsoft.SymbolUploader build task for symbol publishing (dotnet#29247) Remove default handling for bound nodes in (CS/VB)OperstionFactory.CreateInternal. (dotnet#29258) ...
Member
Author
|
@dotnet-bot retest windows_release_unit32_prtest please |
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.
No description provided.