1 override of IsUnboundGenericType
Microsoft.CodeAnalysis.CSharp (1)
Symbols\SubstitutedNamedTypeSymbol.cs (1)
76
public sealed override bool
IsUnboundGenericType
15 references to IsUnboundGenericType
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Expressions.cs (1)
6977
else if (coClassType.
IsUnboundGenericType
)
Binder\Binder_Symbols.cs (1)
1660
((NamedTypeSymbol)left).
IsUnboundGenericType
;
Emitter\Model\PEModuleBuilder.cs (1)
1002
if (namedTypeSymbol.
IsUnboundGenericType
)
Lowering\AsyncRewriter\AsyncMethodBuilderMemberCollection.cs (1)
350
if (builderType.
IsUnboundGenericType
&& builderType.ContainingType?.IsGenericType != true && builderType.Arity == 1)
Symbols\AbstractTypeMap.cs (1)
46
if (previous.
IsUnboundGenericType
)
Symbols\NamedTypeSymbol.cs (3)
879
if (this.
IsUnboundGenericType
!= other.
IsUnboundGenericType
)
1653
if (!
IsUnboundGenericType
&&
Symbols\PublicModel\NamedTypeSymbol.cs (1)
187
bool INamedTypeSymbol.IsUnboundGenericType => UnderlyingNamedTypeSymbol.
IsUnboundGenericType
;
Symbols\Retargeting\RetargetingSymbolTranslator.cs (1)
500
if (type.
IsUnboundGenericType
)
Symbols\Source\SourceNamedTypeSymbol_Extension.cs (1)
270
if (namedType.
IsUnboundGenericType
)
Symbols\Symbol.cs (1)
1327
if (modifierType.
IsUnboundGenericType
)
Symbols\TypeSymbolExtensions.cs (1)
1185
return type is NamedTypeSymbol {
IsUnboundGenericType
: true };
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Attributes\AttributeTests.cs (2)
9917
Assert.True(((NamedTypeSymbol)type.GetAttributes()[0].ConstructorArguments.First().ValueInternal).
IsUnboundGenericType
);
9927
Assert.True(((NamedTypeSymbol)type.GetAttributes()[0].ConstructorArguments.First().ValueInternal).
IsUnboundGenericType
);