6 references to WithRemoveFirst
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (6)
IncrementalParsing\ChangingAsync.cs (1)
51var newTree = oldTree.WithRemoveFirst("async");
IncrementalParsing\IncrementalParsingTests.cs (2)
330var newTree = oldTree.WithRemoveFirst("#line 10"); 362var newTree = oldTree.WithRemoveFirst("#endregion");
Syntax\SyntaxEquivalenceTests.cs (3)
171var tree2 = tree1.WithRemoveFirst("int i;"); 181var tree2 = tree1.WithRemoveFirst("int i = 5;"); 191var tree2 = tree1.WithRemoveFirst("int j = 6;");