2 overrides of GetChangeRanges
Microsoft.CodeAnalysis (1)
Text\ChangedText.cs (1)
169public override IReadOnlyList<TextChangeRange> GetChangeRanges(SourceText oldText)
Microsoft.CodeAnalysis.EditorFeatures.Text (1)
Extensions.SnapshotSourceText.cs (1)
318public override IReadOnlyList<TextChangeRange> GetChangeRanges(SourceText oldText)
7 references to GetChangeRanges
Microsoft.CodeAnalysis (2)
Text\ChangedText.cs (1)
200if (actualOldText != null && actualOldText.GetChangeRanges(oldText).Count == 0)
Text\SourceText.cs (1)
903var ranges = this.GetChangeRanges(oldText).ToList();
Microsoft.CodeAnalysis.CSharp (1)
Syntax\CSharpSyntaxTree.cs (1)
539var changes = newText.GetChangeRanges(oldText);
Microsoft.CodeAnalysis.EditorFeatures (1)
Remote\SolutionChecksumUpdater.cs (1)
237var changeRanges = newText.GetChangeRanges(oldText).AsImmutable();
Microsoft.CodeAnalysis.UnitTests (1)
Text\TextChangeTests.cs (1)
75var changes = newText.GetChangeRanges(text);
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\VisualBasicSyntaxTree.vb (1)
104Return Me.WithChanges(newText, newText.GetChangeRanges(oldText).ToArray())
Microsoft.CodeAnalysis.Workspaces (1)
Shared\Extensions\SourceTextExtensions.cs (1)
63var ranges = newText.GetChangeRanges(oldText);