Merge master to features/target-typing#45856
Merged
143 commits merged intofeatures/target-typingfrom Jul 10, 2020
Merged
Conversation
…slyn into staticLambdas2
…c-lambdas Merge master to features/static-lambdas
…c-lambdas Merge master to features/static-lambdas
…c-lambdas Merge master to features/static-lambdas
Co-authored-by: CyrusNajmabadi <cyrus.najmabadi@gmail.com>
Features/static lambdas
Avoid exposing PrimaryWorkspace to LUT/SBD
Update vs-threading analyzers to 16.7.53
AnalyzerDriver performance improvements
…latest design. (#45831) Related to #45296. From specification: If the record is derived from `object`, the record type includes a synthesized readonly property equivalent to a property declared as follows: ```C# protected Type EqualityContract { get; }; ``` The property is `virtual` unless the record type is `sealed`. The property can be declared explicitly. It is an error if the explicit declaration does not match the expected signature or accessibility, or if the explicit declaration doesn't allow overiding it in a derived type and the record type is not `sealed`. If the record type is derived from a base record type `Base`, the record type includes a synthesized readonly property equivalent to a property declared as follows: ```C# protected override Type EqualityContract { get; }; ``` The property can be declared explicitly. It is an error if the explicit declaration does not match the expected signature or accessibility, or if the explicit declaration doesn't allow overiding it in a derived type and the record type is not `sealed`. It is an error if either synthesized, or explicitly declared property doesn't override a property with this signature in the record type `Base` (for example, if the property is missing in the `Base`, or sealed, or not virtual, etc.). The synthesized property returns `typeof(R)` where `R` is the record type.
…features/target-typing
This pull request was closed.
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/target-typing.
git fetch --all git checkout merges/master-to-features/target-typing git reset --hard upstream/features/target-typing git merge upstream/master # Fix merge conflicts git commit git push upstream merges/master-to-features/target-typing --forceOnce all conflicts are resolved and all the tests pass, you are free to merge the pull request.