4 references to InsertTokensBefore
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (3)
Syntax\SyntaxNodeTests.cs (2)
2288var cu1 = cu.InsertTokensBefore(publicToken, new[] { staticToken }); 2305Assert.Throws<InvalidOperationException>(() => cu.InsertTokensBefore(identifierC, new[] { identifierA, identifierB }));
Syntax\SyntaxRewriterTests.cs (1)
448var newRoot = root.InsertTokensBefore(publicToken, new[] { staticToken });
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
TestSyntaxNodes.vb (1)
1542Dim cu1 = cu.InsertTokensBefore(publicToken, {sharedToken})