2 references to GetFinalMergedTextAsync
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
336
var newText = await merger.
GetFinalMergedTextAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
256
var docIdsAndTexts = await docIdsAndMerger.SelectAsArrayAsync(async t => (t.documentId, await t.merger.
GetFinalMergedTextAsync
(cancellationToken).ConfigureAwait(false))).ConfigureAwait(false);