2 instantiations of RQUnconstructedTypeInfo
Microsoft.CodeAnalysis.Features (2)
RQName\Nodes\RQType.cs (1)
13new RQUnconstructedType(new[] { "System" }, new[] { 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)
14public readonly ReadOnlyCollection<RQUnconstructedTypeInfo> TypeInfos; 16public RQUnconstructedType(IList<string> namespaceNames, IList<RQUnconstructedTypeInfo> typeInfos) 19TypeInfos = new ReadOnlyCollection<RQUnconstructedTypeInfo>(typeInfos);
RQName\RQNodeBuilder.cs (1)
77var typeInfos = new List<RQUnconstructedTypeInfo>();