8 references to WithReplace
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (8)
IncrementalParsing\TypeChanges.cs (8)
31var newTree = oldTree.WithReplace(16, "construct", "~construct");
46var newTree = oldTree.WithReplace(16, "M", "construct");
61var newTree = oldTree.WithReplace(16, "construct", "M");
76var newTree = oldTree.WithReplace(16, "~construct", "construct");
91var newTree = oldTree.WithReplace(16, "get", "set");
107var newTree = oldTree.WithReplace(16, "set", "get");
123var newTree = oldTree.WithReplace(16, "add", "remove");
139var newTree = oldTree.WithReplace(16, "remove", "add");