10 references to SeparatedSyntaxList
Microsoft.CodeAnalysis (10)
Syntax\SeparatedSyntaxList.cs (9)
25return new SeparatedSyntaxList<TNode>(new SyntaxNodeOrTokenList(nodes[0], index: 0)); 83: this(new SyntaxNodeOrTokenList(node, index)) 446return new SeparatedSyntaxList<TNode>(nodesWithSeps.InsertRange(insertionIndex, nodesToInsertWithSeparators)); 502return new SeparatedSyntaxList<TNode>(nodesWithSeps); 523return new SeparatedSyntaxList<TNode>(this.GetWithSeparators().Replace(nodeInList, newNode)); 584return new SeparatedSyntaxList<TNode>(nodesWithSeps.Replace(separatorToken, newSeparator)); 629return new SeparatedSyntaxList<SyntaxNode>(nodes._list); 636return new SeparatedSyntaxList<TNode>(nodes._list); 641return new SeparatedSyntaxList<TNode>(nodes._list);
Syntax\SyntaxListBuilderExtensions.cs (1)
50return new SeparatedSyntaxList<TNode>(new SyntaxNodeOrTokenList(listNode.CreateRed(), 0));