10 references to SeparatedSyntaxList
Microsoft.CodeAnalysis (10)
Syntax\SeparatedSyntaxList.cs (9)
26return new SeparatedSyntaxList<TNode>(new SyntaxNodeOrTokenList(nodes[0], index: 0)); 84: this(new SyntaxNodeOrTokenList(node, index)) 447return new SeparatedSyntaxList<TNode>(nodesWithSeps.InsertRange(insertionIndex, nodesToInsertWithSeparators)); 503return new SeparatedSyntaxList<TNode>(nodesWithSeps); 524return new SeparatedSyntaxList<TNode>(this.GetWithSeparators().Replace(nodeInList, newNode)); 585return new SeparatedSyntaxList<TNode>(nodesWithSeps.Replace(separatorToken, newSeparator)); 630return new SeparatedSyntaxList<SyntaxNode>(nodes._list); 637return new SeparatedSyntaxList<TNode>(nodes._list); 642return new SeparatedSyntaxList<TNode>(nodes._list);
Syntax\SyntaxListBuilderExtensions.cs (1)
50return new SeparatedSyntaxList<TNode>(new SyntaxNodeOrTokenList(listNode.CreateRed(), 0));