2 implementations of GetTextChangesAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
TextDiffing\EditorTextDifferencingService.cs (1)
30public async Task<ImmutableArray<TextChange>> GetTextChangesAsync(Document oldDocument, Document newDocument, TextDifferenceTypes preferredDifferenceType, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (1)
LinkedFileDiffMerging\DefaultDocumentTextDifferencingService.cs (1)
27public 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)
220var textChanges = await textDiffingService.GetTextChangesAsync(
Microsoft.CodeAnalysis.Workspaces (2)
LinkedFileDiffMerging\LinkedFileDiffMergingSession.cs (2)
105var allTextChangesAcrossLinkedFiles = await textDifferencingService.GetTextChangesAsync( 148var textChanges = await textDiffService.GetTextChangesAsync(