13 references to SimpleLeafNode
Microsoft.CodeAnalysis.Features (13)
RQName\Nodes\RQArrayType.cs (1)
21var rankNode = new SimpleLeafNode(Rank.ToString());
RQName\Nodes\RQMemberParameterIndex.cs (2)
31childList.Add(new SimpleLeafNode(ParameterIndex.ToString())); 32childList.Add(new SimpleLeafNode(RQNameStrings.NotPartial));
RQName\Nodes\RQMemberParameterIndexFromPartialImplementation.cs (2)
22childList.Add(new SimpleLeafNode(ParameterIndex.ToString())); 23childList.Add(new SimpleLeafNode(RQNameStrings.PartialImplementation));
RQName\Nodes\RQMemberParameterIndexFromPartialSignature.cs (2)
22childList.Add(new SimpleLeafNode(ParameterIndex.ToString())); 23childList.Add(new SimpleLeafNode(RQNameStrings.PartialSignature));
RQName\Nodes\RQNullType.cs (1)
15=> new SimpleLeafNode(RQNameStrings.Null);
RQName\Nodes\RQOutParameter.cs (1)
14=> new SimpleGroupNode(RQNameStrings.ParamMod, new SimpleLeafNode(RQNameStrings.Out), Type.ToSimpleTree());
RQName\Nodes\RQRefParameter.cs (1)
14=> new SimpleGroupNode(RQNameStrings.ParamMod, new SimpleLeafNode(RQNameStrings.Ref), Type.ToSimpleTree());
RQName\Nodes\RQUnconstructedType.cs (1)
33let nameLeaf = new SimpleLeafNode(typeInfo.TypeName)
RQName\Nodes\RQVoidType.cs (1)
15=> new SimpleLeafNode(RQNameStrings.Void);
RQName\SimpleTree\SimpleGroupNode.cs (1)
17public SimpleGroupNode(string text, string singleLeafChildText) : this(text, new SimpleLeafNode(singleLeafChildText)) { }