12 overrides of ReferenceTypeConstraintIsNullable
Microsoft.CodeAnalysis.CSharp (12)
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TypeParameterSymbol.cs (1)
82internal override bool? ReferenceTypeConstraintIsNullable
Symbols\ErrorTypeSymbol.ErrorTypeParameterSymbol.cs (1)
74internal override bool? ReferenceTypeConstraintIsNullable
Symbols\Metadata\PE\PETypeParameterSymbol.cs (1)
483internal override bool? ReferenceTypeConstraintIsNullable
Symbols\Source\CrefTypeParameterSymbol.cs (1)
150internal override bool? ReferenceTypeConstraintIsNullable
Symbols\Source\IndexedTypeParameterSymbol.cs (1)
165internal override bool? ReferenceTypeConstraintIsNullable
Symbols\Source\SourceTypeParameterSymbol.cs (3)
544internal override bool? ReferenceTypeConstraintIsNullable 695internal override bool? ReferenceTypeConstraintIsNullable 948internal override bool? ReferenceTypeConstraintIsNullable
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListTypeParameterSymbol.cs (1)
53internal override bool? ReferenceTypeConstraintIsNullable => null;
Symbols\Synthesized\SynthesizedInlineArrayTypeSymbol.cs (1)
245internal override bool? ReferenceTypeConstraintIsNullable => null;
Symbols\SynthesizedSimpleMethodTypeParameterSymbol.cs (1)
57internal override bool? ReferenceTypeConstraintIsNullable
Symbols\Wrapped\WrappedTypeParameterSymbol.cs (1)
88internal override bool? ReferenceTypeConstraintIsNullable
7 references to ReferenceTypeConstraintIsNullable
Microsoft.CodeAnalysis.CSharp (7)
Symbols\ConstraintsHelper.cs (1)
1130typeParameter.ReferenceTypeConstraintIsNullable == false &&
Symbols\PublicModel\TypeParameterSymbol.cs (1)
36_underlying.ReferenceTypeConstraintIsNullable switch
Symbols\Source\SourceTypeParameterSymbol.cs (3)
326if (this.HasReferenceTypeConstraint && this.ReferenceTypeConstraintIsNullable != null) 407switch (this.ReferenceTypeConstraintIsNullable) 953return ((object)typeParameter != null) ? typeParameter.ReferenceTypeConstraintIsNullable : false;
Symbols\TypeParameterSymbol.cs (1)
540return !this.ReferenceTypeConstraintIsNullable;
Symbols\Wrapped\WrappedTypeParameterSymbol.cs (1)
92return _underlyingTypeParameter.ReferenceTypeConstraintIsNullable;