Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions src/Workspaces/Core/Portable/Workspace/Solution/Document.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Copy link
Member

Choose a reason for hiding this comment

The 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
{
Expand Down Expand Up @@ -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();
}
Expand Down
Loading