Tags: FICTURE7/roslyn
Tags
NetFx Toolset inserted on 2015-07-29 as checkin #1507452 using Releas… …e build from angocke-dev1.
NetFx Toolset inserted on 2015-07-29 as checkin #1507452 using Releas… …e build from angocke-dev1.
Merge pull request dotnet#4117 from DustinCampbell/fix-4115 Add special case to object creation completion to not commit 'object' on '{'
Fix loading the type of FixedBufferAttribute in fields The current code attempts to load an arbitrary type from the FixedBufferAttribute, which represents the type of pointer which is returned by the fixed buffer field in an unsafe struct. This is a problem because it is not done with assembly identity unification and the unification may depend on the current compilation, even though the type is in metadata. However, the type of the fixed buffer field is limited to SpecialTypes, so rather than trying to do unification we can simply load the special type of the field directly. Fixes dotnet#2385
Fix loading the type of FixedBufferAttribute in fields The current code attempts to load an arbitrary type from the FixedBufferAttribute, which represents the type of pointer which is returned by the fixed buffer field in an unsafe struct. This is a problem because it is not done with assembly identity unification and the unification may depend on the current compilation, even though the type is in metadata. However, the type of the fixed buffer field is limited to SpecialTypes, so rather than trying to do unification we can simply load the special type of the field directly. Fixes dotnet#2385
Merge pull request dotnet#1474 from AlekseyTs/ConditionalRaceInAsync Adjust Async rewrite to eliminate races in Conditional Access.
Merge pull request dotnet#1238 from heejaechang/offbydefaultTrigger turn off trigger diagnostic by default as well for unused declaration an...