1 write to IncludeSuppressedDiagnostics
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_GetDiagnostics.cs (1)
66
IncludeSuppressedDiagnostics
= includeSuppressedDiagnostics;
3 references to IncludeSuppressedDiagnostics
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_GetDiagnostics.cs (3)
135
=>
IncludeSuppressedDiagnostics
|| !diagnostic.IsSuppressed;
181
return
IncludeSuppressedDiagnostics
? diagnostics : diagnostics.WhereAsArray(d => !d.IsSuppressed);
266
var compilation = await CreateCompilationWithAnalyzersAsync(project, ideOptions, stateSets,
IncludeSuppressedDiagnostics
, cancellationToken).ConfigureAwait(false);