90 references to GetWithSeparators
Microsoft.CodeAnalysis (6)
Microsoft.CodeAnalysis.CSharp (2)
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (17)
Microsoft.CodeAnalysis.CSharp.Features (18)
Microsoft.CodeAnalysis.CSharp.Workspaces (11)
Microsoft.CodeAnalysis.Features (5)
Microsoft.CodeAnalysis.VisualBasic (1)
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (5)
Microsoft.CodeAnalysis.VisualBasic.Features (3)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (16)
TestSyntaxNodes.vb (16)
68Assert.Equal(argList, argList.Arguments.GetWithSeparators(1).Parent)
69Assert.Equal(argList, argList.Arguments.GetWithSeparators(3).Parent)
82Assert.Equal(children(2), argList.Arguments.GetWithSeparators(1))
84Assert.Equal(children(4), argList.Arguments.GetWithSeparators(3))
394Assert.Equal(New TextSpan(7, 1), argList.Arguments.GetWithSeparators(1).Span)
396Assert.Equal(New TextSpan(13, 1), argList.Arguments.GetWithSeparators(3).Span)
630Assert.Null(sepList.GetWithSeparators(3).Parent)
635Assert.Equal(",", sepList.GetWithSeparators(1).ToString)
636Assert.Equal(";", sepList.GetWithSeparators(3).ToString)
639Assert.Equal(4, sepList.GetWithSeparators(1).SpanStart)
641Assert.Equal(10, sepList.GetWithSeparators(3).SpanStart)
651Assert.Equal(statement, sepList.GetWithSeparators(3).Parent)
659Assert.Equal(",", sepList.GetWithSeparators(1).ToString)
660Assert.Equal(";", sepList.GetWithSeparators(3).ToString)
663Assert.Equal(9 + 4, sepList.GetWithSeparators(1).SpanStart)
665Assert.Equal(9 + 10, sepList.GetWithSeparators(3).SpanStart)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (5)