7 references to SeparatedSyntaxListBuilder
Microsoft.CodeAnalysis (1)
Syntax\SeparatedSyntaxListBuilder.cs (1)
22return new SeparatedSyntaxListBuilder<TNode>(8);
Microsoft.CodeAnalysis.CSharp (3)
Syntax\CSharpSyntaxRewriter.cs (2)
191alternate = new SeparatedSyntaxListBuilder<TNode>(count); 227alternate = new SeparatedSyntaxListBuilder<TNode>(count);
Syntax\SyntaxFactory.cs (1)
1380var builder = new SeparatedSyntaxListBuilder<TNode>(collection != null ? collection.Count : 3);
Microsoft.CodeAnalysis.VisualBasic (3)
Syntax\SyntaxNodeFactories.vb (1)
892Dim builder As New SeparatedSyntaxListBuilder(Of TNode)(If(collection IsNot Nothing, (collection.Count * 2) - 1, 3))
Syntax\VisualBasicSyntaxRewriter.vb (2)
145alternate = New SeparatedSyntaxListBuilder(Of TNode)(count) 170alternate = New SeparatedSyntaxListBuilder(Of TNode)(count)