1 override of GetChangeRanges
Microsoft.CodeAnalysis (1)
Text\ChangedText.cs (1)
169public override IReadOnlyList<TextChangeRange> GetChangeRanges(SourceText oldText)
5 references to GetChangeRanges
Microsoft.CodeAnalysis (2)
Text\ChangedText.cs (1)
200if (actualOldText != null && actualOldText.GetChangeRanges(oldText).Count == 0)
Text\SourceText.cs (1)
922var ranges = this.GetChangeRanges(oldText).ToList();
Microsoft.CodeAnalysis.CSharp (1)
Syntax\CSharpSyntaxTree.cs (1)
540var changes = newText.GetChangeRanges(oldText);
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\VisualBasicSyntaxTree.vb (1)
105Return Me.WithChanges(newText, newText.GetChangeRanges(oldText).ToArray())
Microsoft.CodeAnalysis.Workspaces (1)
Shared\Extensions\SourceTextExtensions.cs (1)
64var ranges = newText.GetChangeRanges(oldText);