2 overrides of SeparatedList
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
70internal override SeparatedSyntaxList<TElement> SeparatedList<TElement>(IEnumerable<TElement> nodes, IEnumerable<SyntaxToken> separators)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
CodeGeneration\VisualBasicSyntaxGenerator.vb (1)
56Friend Overrides Function SeparatedList(Of TElement As SyntaxNode)(nodes As IEnumerable(Of TElement), separators As IEnumerable(Of SyntaxToken)) As SeparatedSyntaxList(Of TElement)
1 reference to SeparatedList
Microsoft.CodeAnalysis.Features (1)
ChangeSignature\AbstractChangeSignatureService.cs (1)
903return Generator.SeparatedList(fullList.ToImmutableAndFree(), separators.ToImmutableAndFree());