7 references to GetRequiredSyntaxTreeAsync
Microsoft.CodeAnalysis.CodeStyle.Fixes (6)
AbstractFileHeaderCodeFixProvider.cs (1)
60
var tree = await document.
GetRequiredSyntaxTreeAsync
(cancellationToken).ConfigureAwait(false);
AbstractOrderModifiersCodeFixProvider.cs (1)
43
var syntaxTree = await context.Document.
GetRequiredSyntaxTreeAsync
(context.CancellationToken).ConfigureAwait(false);
AddImportPlacementOptionsProviders.cs (1)
17
var syntaxTree = await document.
GetRequiredSyntaxTreeAsync
(cancellationToken).ConfigureAwait(false);
AnalyzerOptionsProviders.cs (1)
19
var syntaxTree = await document.
GetRequiredSyntaxTreeAsync
(cancellationToken).ConfigureAwait(false);
DocumentExtensions.cs (1)
211
var syntaxTree = await document.
GetRequiredSyntaxTreeAsync
(cancellationToken).ConfigureAwait(false);
FormattingCodeFixProvider.cs (1)
67
var tree = await context.Document.
GetRequiredSyntaxTreeAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
CSharpAsAndNullCheckCodeFixProvider.cs (1)
47
var tree = await document.
GetRequiredSyntaxTreeAsync
(cancellationToken).ConfigureAwait(false);