11 references to GetTextChangesAsync
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Utilities\ParsedDocument.cs (1)
70/// Equivalent semantics to <see cref="Document.GetTextChangesAsync(Document, CancellationToken)"/>
Microsoft.CodeAnalysis.EditorFeatures (1)
Organizing\OrganizeDocumentCommandHandler.cs (1)
150var changes = await newDocument.GetTextChangesAsync(currentDocument, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.PragmaBatchFixHelpers.cs (1)
127return await newDocument.GetTextChangesAsync(currentDocument, cancellationToken).ConfigureAwait(false);
Completion\Providers\AbstractMemberInsertingCompletionProvider.cs (1)
69var changes = await newDocument.GetTextChangesAsync(document, cancellationToken).ConfigureAwait(false);
Completion\Providers\Snippets\AbstractSnippetCompletionProvider.cs (1)
44var allTextChanges = await allChangesDocument.GetTextChangesAsync(document, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
ImplementAbstractClass\ImplementAbstractClassCommandHandler.vb (1)
57Dim changes = Await updatedDocument.GetTextChangesAsync(document, cancellationToken).ConfigureAwait(True)
Microsoft.CodeAnalysis.Workspaces (4)
LinkedFileDiffMerging\DefaultDocumentTextDifferencingService.cs (1)
29var changes = await newDocument.GetTextChangesAsync(oldDocument, cancellationToken).ConfigureAwait(false);
Remote\RemoteUtilities.cs (1)
36var textChanges = await newDoc.GetTextChangesAsync(oldDoc, cancellationToken).ConfigureAwait(false);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Utilities\ParsedDocument.cs (1)
70/// Equivalent semantics to <see cref="Document.GetTextChangesAsync(Document, CancellationToken)"/>
Workspace\Solution\Document.cs (1)
428/// Similar to <see cref="GetTextChangesAsync(Document, CancellationToken)"/>, but should be used when in a forced
Microsoft.VisualStudio.LanguageServices (1)
Venus\ContainedDocument.DocumentServiceProvider.cs (1)
77var textChanges = (await newDocument.GetTextChangesAsync(oldDocument, cancellationToken).ConfigureAwait(false)).ToImmutableArray();