-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Provide true-async and true-sync versions of GetTextChanges #76498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -416,16 +416,28 @@ public Document WithFilePath(string? filePath) | |
| => this.Project.Solution.WithDocumentFilePath(this.Id, filePath).GetRequiredDocument(Id); | ||
|
|
||
| /// <summary> | ||
| /// Get the text changes between this document and a prior version of the same document. | ||
| /// The changes, when applied to the text of the old document, will produce the text of the current document. | ||
| /// Get the text changes between this document and a prior version of the same document. The changes, when applied | ||
| /// to the text of the old document, will produce the text of the current document. | ||
| /// </summary> | ||
| public Task<IEnumerable<TextChange>> GetTextChangesAsync(Document oldDocument, CancellationToken cancellationToken = default) | ||
| public async Task<IEnumerable<TextChange>> GetTextChangesAsync(Document oldDocument, CancellationToken cancellationToken = default) | ||
| { | ||
| return Task.FromResult<IEnumerable<TextChange>>(GetTextChangesSynchronously(oldDocument, cancellationToken)); | ||
| return await GetTextChangesAsync(useAsync: true, oldDocument, cancellationToken).ConfigureAwait(false); | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Similar to <see cref="GetTextChangesAsync(Document, CancellationToken)"/>, but should be used when in a forced | ||
| /// synchronous context. | ||
| /// </summary> | ||
| internal ImmutableArray<TextChange> GetTextChangesSynchronously( | ||
| Document oldDocument, CancellationToken cancellationToken) | ||
| { | ||
| // Should always complete synchronously since we passed in 'useAsync: false' | ||
| var result = GetTextChangesAsync(useAsync: false, oldDocument, cancellationToken); | ||
| return result.VerifyCompleted(); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Neat! I did not know about this. |
||
| } | ||
|
|
||
| private async Task<ImmutableArray<TextChange>> GetTextChangesAsync( | ||
| bool useAsync, Document oldDocument, CancellationToken cancellationToken) | ||
| { | ||
| try | ||
| { | ||
|
|
@@ -462,16 +474,16 @@ internal ImmutableArray<TextChange> GetTextChangesSynchronously( | |
| // get changes by diffing the trees | ||
| if (this.SupportsSyntaxTree) | ||
| { | ||
| var tree = this.GetSyntaxTreeSynchronously(cancellationToken); | ||
| var oldTree = oldDocument.GetSyntaxTreeSynchronously(cancellationToken); | ||
| var tree = useAsync ? await GetSyntaxTreeAsync(cancellationToken).ConfigureAwait(false) : this.GetSyntaxTreeSynchronously(cancellationToken); | ||
| var oldTree = useAsync ? await oldDocument.GetSyntaxTreeAsync(cancellationToken).ConfigureAwait(false) : oldDocument.GetSyntaxTreeSynchronously(cancellationToken); | ||
|
|
||
| RoslynDebug.Assert(tree is object); | ||
| RoslynDebug.Assert(oldTree is object); | ||
| return tree.GetChanges(oldTree).ToImmutableArray(); | ||
| } | ||
|
|
||
| text = this.GetTextSynchronously(cancellationToken); | ||
| oldText = oldDocument.GetTextSynchronously(cancellationToken); | ||
| text = useAsync ? await this.GetTextAsync(cancellationToken).ConfigureAwait(false) : this.GetTextSynchronously(cancellationToken); | ||
| oldText = useAsync ? await oldDocument.GetTextAsync(cancellationToken).ConfigureAwait(false) : oldDocument.GetTextSynchronously(cancellationToken); | ||
|
|
||
| return text.GetTextChanges(oldText).ToImmutableArray(); | ||
| } | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.