2 instantiations of SynthesizedSealedPropertyAccessor
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourcePropertySymbolBase.cs (2)
1011return (object)overriddenAccessor == null ? null : new SynthesizedSealedPropertyAccessor(this, overriddenAccessor); 1017return (object)overriddenAccessor == null ? null : new SynthesizedSealedPropertyAccessor(this, overriddenAccessor);
9 references to SynthesizedSealedPropertyAccessor
Microsoft.CodeAnalysis.CSharp (7)
Compiler\MethodCompiler.cs (1)
849SynthesizedSealedPropertyAccessor synthesizedAccessor = sourceProperty.SynthesizedSealedAccessorOpt;
Compiler\SynthesizedMetadataCompiler.cs (1)
99var synthesizedAccessor = sourceProperty.SynthesizedSealedAccessorOpt;
Emitter\Model\PropertySymbolAdapter.cs (2)
47SynthesizedSealedPropertyAccessor synthesizedAccessor = sourceProperty.SynthesizedSealedAccessorOpt; 279SynthesizedSealedPropertyAccessor synthesized = sourceProperty.SynthesizedSealedAccessorOpt;
Symbols\Source\SourcePropertySymbolBase.cs (3)
63private SynthesizedSealedPropertyAccessor _lazySynthesizedSealedAccessor; 978internal SynthesizedSealedPropertyAccessor SynthesizedSealedAccessorOpt 1003private SynthesizedSealedPropertyAccessor MakeSynthesizedSealedAccessor()
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
BreakingChanges.cs (2)
125var derivedProperty1Synthesized = derivedProperty1.SynthesizedSealedAccessorOpt; 126var derivedProperty2Synthesized = derivedProperty2.SynthesizedSealedAccessorOpt;