5 references to IsNullableEnabledForConstructorsAndInitializers
Microsoft.CodeAnalysis.CSharp (5)
Compilation\InitializerSemanticModel.cs (1)
281type.IsNullableEnabledForConstructorsAndInitializers(useStatic: MemberSymbol.IsStatic);
Symbols\Source\SourceConstructorSymbol.cs (1)
189: ((SourceMemberContainerTypeSymbol)ContainingType).IsNullableEnabledForConstructorsAndInitializers(IsStatic);
Symbols\Synthesized\Records\SynthesizedPrimaryConstructor.cs (1)
94return ContainingType.IsNullableEnabledForConstructorsAndInitializers(IsStatic);
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
282(ContainingType as SourceMemberContainerTypeSymbol)?.IsNullableEnabledForConstructorsAndInitializers(useStatic: false) ?? false;
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
382(ContainingType as SourceMemberContainerTypeSymbol)?.IsNullableEnabledForConstructorsAndInitializers(useStatic: true) ?? false;