13 references to SimpleLeafNode
Microsoft.CodeAnalysis.Features (13)
RQName\Nodes\RQArrayType.cs (1)
21
var rankNode = new
SimpleLeafNode
(Rank.ToString());
RQName\Nodes\RQMemberParameterIndex.cs (2)
31
childList.Add(new
SimpleLeafNode
(ParameterIndex.ToString()));
32
childList.Add(new
SimpleLeafNode
(RQNameStrings.NotPartial));
RQName\Nodes\RQMemberParameterIndexFromPartialImplementation.cs (2)
22
childList.Add(new
SimpleLeafNode
(ParameterIndex.ToString()));
23
childList.Add(new
SimpleLeafNode
(RQNameStrings.PartialImplementation));
RQName\Nodes\RQMemberParameterIndexFromPartialSignature.cs (2)
22
childList.Add(new
SimpleLeafNode
(ParameterIndex.ToString()));
23
childList.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)
33
let nameLeaf = new
SimpleLeafNode
(typeInfo.TypeName)
RQName\Nodes\RQVoidType.cs (1)
15
=> new
SimpleLeafNode
(RQNameStrings.Void);
RQName\SimpleTree\SimpleGroupNode.cs (1)
17
public SimpleGroupNode(string text, string singleLeafChildText) : this(text, new
SimpleLeafNode
(singleLeafChildText)) { }