2 instantiations of RQUnconstructedTypeInfo
Microsoft.CodeAnalysis.Features (2)
RQName\Nodes\RQType.cs (1)
12new RQUnconstructedType(["System"], [new RQUnconstructedTypeInfo("Object", 0)]),
RQName\RQNodeBuilder.cs (1)
81typeInfos.Insert(0, new RQUnconstructedTypeInfo(currentType.Name, currentType.TypeParameters.Length));
4 references to RQUnconstructedTypeInfo
Microsoft.CodeAnalysis.Features (4)
RQName\Nodes\RQUnconstructedType.cs (3)
12internal sealed class RQUnconstructedType(IList<string> namespaceNames, IList<RQUnconstructedTypeInfo> typeInfos) : RQTypeOrNamespace(namespaceNames) 14public readonly ReadOnlyCollection<RQUnconstructedTypeInfo> TypeInfos = new ReadOnlyCollection<RQUnconstructedTypeInfo>(typeInfos);
RQName\RQNodeBuilder.cs (1)
77var typeInfos = new List<RQUnconstructedTypeInfo>();