1 override of IsUnboundGenericType
Microsoft.CodeAnalysis.CSharp (1)
Symbols\SubstitutedNamedTypeSymbol.cs (1)
67public sealed override bool IsUnboundGenericType
14 references to IsUnboundGenericType
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder_Expressions.cs (1)
5850else if (coClassType.IsUnboundGenericType)
Binder\Binder_Symbols.cs (1)
1595((NamedTypeSymbol)left).IsUnboundGenericType;
Emitter\Model\PEModuleBuilder.cs (1)
983if (namedTypeSymbol.IsUnboundGenericType)
Lowering\AsyncRewriter\AsyncMethodBuilderMemberCollection.cs (1)
350if (builderType.IsUnboundGenericType && builderType.ContainingType?.IsGenericType != true && builderType.Arity == 1)
Symbols\AbstractTypeMap.cs (1)
45if (previous.IsUnboundGenericType)
Symbols\NamedTypeSymbol.cs (3)
874if (this.IsUnboundGenericType != other.IsUnboundGenericType) 1640if (!IsUnboundGenericType &&
Symbols\PublicModel\NamedTypeSymbol.cs (1)
187bool INamedTypeSymbol.IsUnboundGenericType => UnderlyingNamedTypeSymbol.IsUnboundGenericType;
Symbols\Retargeting\RetargetingSymbolTranslator.cs (1)
500if (type.IsUnboundGenericType)
Symbols\Symbol.cs (1)
1177if (modifierType.IsUnboundGenericType)
Symbols\TypeSymbolExtensions.cs (1)
1095return type is NamedTypeSymbol { IsUnboundGenericType: true };
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2)
Attributes\AttributeTests.cs (2)
9617Assert.True(((NamedTypeSymbol)type.GetAttributes()[0].ConstructorArguments.First().ValueInternal).IsUnboundGenericType); 9627Assert.True(((NamedTypeSymbol)type.GetAttributes()[0].ConstructorArguments.First().ValueInternal).IsUnboundGenericType);