2 instantiations of SynthesizedSealedPropertyAccessor
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourcePropertySymbolBase.cs (2)
1260return (object)overriddenAccessor == null ? null : new SynthesizedSealedPropertyAccessor(this, overriddenAccessor); 1266return (object)overriddenAccessor == null ? null : new SynthesizedSealedPropertyAccessor(this, overriddenAccessor);
9 references to SynthesizedSealedPropertyAccessor
Microsoft.CodeAnalysis.CSharp (7)
Compiler\MethodCompiler.cs (1)
869SynthesizedSealedPropertyAccessor synthesizedAccessor = sourceProperty.SynthesizedSealedAccessorOpt;
Compiler\SynthesizedMetadataCompiler.cs (1)
108var synthesizedAccessor = sourceProperty.SynthesizedSealedAccessorOpt;
Emitter\Model\PropertySymbolAdapter.cs (2)
50SynthesizedSealedPropertyAccessor synthesizedAccessor = sourceProperty.SynthesizedSealedAccessorOpt; 282SynthesizedSealedPropertyAccessor synthesized = sourceProperty.SynthesizedSealedAccessorOpt;
Symbols\Source\SourcePropertySymbolBase.cs (3)
70private SynthesizedSealedPropertyAccessor _lazySynthesizedSealedAccessor; 1227internal SynthesizedSealedPropertyAccessor SynthesizedSealedAccessorOpt 1252private SynthesizedSealedPropertyAccessor MakeSynthesizedSealedAccessor()
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
BreakingChanges.cs (2)
125var derivedProperty1Synthesized = derivedProperty1.SynthesizedSealedAccessorOpt; 126var derivedProperty2Synthesized = derivedProperty2.SynthesizedSealedAccessorOpt;