5 instantiations of TypeNameInfo
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\TypeNameObject.cs (5)
69knownTypeNames.Add(new(fullName, @namespace, name, alias)); 97_info = new(stringValue!, @namespace: null, name: null, alias: null); 128return new(new(fullName, namespaceName, name, alias: null), index: null); 147return new(new(fullName, @namespace, name, alias: null), index: null); 163return new(new(fullName, @namespace, name, alias: null), index: null);
8 references to TypeNameInfo
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\TypeNameObject.cs (8)
25private static readonly ImmutableArray<TypeNameInfo> s_knownTypeNames; 33var knownTypeNames = ImmutableArray.CreateBuilder<TypeNameInfo>(); 82private readonly TypeNameInfo? _info; 100private TypeNameObject(TypeNameInfo info, byte? index) 124var info = s_knownTypeNames[index]; 140var info = s_knownTypeNames[index]; 156var info = s_knownTypeNames[index]; 229else if (_info is TypeNameInfo info)