3 instantiations of UnboundArgumentErrorTypeSymbol
Microsoft.CodeAnalysis.CSharp (3)
Symbols\UnboundGenericType.cs (3)
55result.Add(TypeWithAnnotations.Create(new UnboundArgumentErrorTypeSymbol(name, errorInfo))); 60public static readonly ErrorTypeSymbol Instance = new UnboundArgumentErrorTypeSymbol(string.Empty, new CSDiagnosticInfo(ErrorCode.ERR_UnexpectedUnboundGenericName)); 74return new UnboundArgumentErrorTypeSymbol(_name, _errorInfo, newData);
8 references to UnboundArgumentErrorTypeSymbol
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Symbols.cs (3)
1235UnboundArgumentErrorTypeSymbol.CreateTypeArguments( 1350/// cref="OmittedTypeArgumentSyntax"/> a <see cref="UnboundArgumentErrorTypeSymbol.Instance"/> will be returned 1383? TypeWithAnnotations.Create(UnboundArgumentErrorTypeSymbol.Instance)
Symbols\UnboundGenericType.cs (3)
39var typeArguments = UnboundArgumentErrorTypeSymbol.CreateTypeArguments( 112UnboundArgumentErrorTypeSymbol? other = t2 as UnboundArgumentErrorTypeSymbol;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Attributes\AttributeTests_WellKnownAttributes.cs (1)
5013Assert.IsType<UnboundArgumentErrorTypeSymbol>(unbound);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\TypeTests.cs (1)
1862Assert.IsType<UnboundArgumentErrorTypeSymbol>(symbol.ContainingType.TypeArguments.Single().GetSymbol());