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