2 implementations of GetTextChangesAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
TextDiffing\EditorTextDifferencingService.cs (1)
30
public async Task<ImmutableArray<TextChange>>
GetTextChangesAsync
(Document oldDocument, Document newDocument, TextDifferenceTypes preferredDifferenceType, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (1)
LinkedFileDiffMerging\DefaultDocumentTextDifferencingService.cs (1)
27
public async Task<ImmutableArray<TextChange>>
GetTextChangesAsync
(Document oldDocument, Document newDocument, TextDifferenceTypes preferredDifferenceType, CancellationToken cancellationToken)
3 references to GetTextChangesAsync
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\AddMissingImports\AbstractAddMissingImportsFeatureService.cs (1)
220
var textChanges = await textDiffingService.
GetTextChangesAsync
(
Microsoft.CodeAnalysis.Workspaces (2)
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (2)
105
var allTextChangesAcrossLinkedFiles = await textDifferencingService.
GetTextChangesAsync
(
148
var textChanges = await textDiffService.
GetTextChangesAsync
(