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