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