2 instantiations of ChangeRangeWithText
Microsoft.CodeAnalysis (2)
Syntax\SyntaxDiffer.cs (2)
780
textChanges.Add(new
ChangeRangeWithText
(range, _computeNewText ? newText.ToString() : null));
786
textChanges.Add(new
ChangeRangeWithText
(cr.Range, _computeNewText ? GetText(cr.NewNodes) : null));
3 references to ChangeRangeWithText
Microsoft.CodeAnalysis (3)
Syntax\SyntaxDiffer.cs (3)
107
foreach (
var
change in reducedChanges)
738
private List<
ChangeRangeWithText
> ReduceChanges(List<ChangeRecord> changeRecords)
740
var textChanges = new List<
ChangeRangeWithText
>(changeRecords.Count);