11 overrides of ReferenceTypeConstraintIsNullable
Microsoft.CodeAnalysis.CSharp (11)
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)
484internal 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 (2)
544internal override bool? ReferenceTypeConstraintIsNullable 644internal abstract override bool? ReferenceTypeConstraintIsNullable { get; }
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListTypeParameterSymbol.cs (1)
53internal override bool? ReferenceTypeConstraintIsNullable => null;
Symbols\Synthesized\SynthesizedInlineArrayTypeSymbol.cs (1)
247internal 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) 974return ((object)typeParameter != null) ? typeParameter.ReferenceTypeConstraintIsNullable : false;
Symbols\TypeParameterSymbol.cs (1)
540return !this.ReferenceTypeConstraintIsNullable;
Symbols\Wrapped\WrappedTypeParameterSymbol.cs (1)
92return _underlyingTypeParameter.ReferenceTypeConstraintIsNullable;