6 references to WithRemoveFirst
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (6)
IncrementalParsing\ChangingAsync.cs (1)
51var newTree = oldTree.WithRemoveFirst("async");
IncrementalParsing\IncrementalParsingTests.cs (2)
331var newTree = oldTree.WithRemoveFirst("#line 10"); 363var newTree = oldTree.WithRemoveFirst("#endregion");
Syntax\SyntaxEquivalenceTests.cs (3)
172var tree2 = tree1.WithRemoveFirst("int i;"); 182var tree2 = tree1.WithRemoveFirst("int i = 5;"); 192var tree2 = tree1.WithRemoveFirst("int j = 6;");