22 references to SemanticDocumentAnalysis
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Diagnostics\DiagnosticAnalyzerDriver\DiagnosticAnalyzerDriverTests.cs (1)
191=> DiagnosticAnalyzerCategory.SyntaxTreeWithoutSemanticsAnalysis | DiagnosticAnalyzerCategory.SemanticDocumentAnalysis | DiagnosticAnalyzerCategory.ProjectAnalysis;
Microsoft.CodeAnalysis.CSharp.Features (5)
ConvertToProgramMainDiagnosticAnalyzer.cs (1)
29=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
ConvertToTopLevelStatementsDiagnosticAnalyzer.cs (1)
31=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
CSharpMakeStructFieldsWritableDiagnosticAnalyzer.cs (1)
30=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
CSharpRemoveUnnecessaryNullableDirectiveDiagnosticAnalyzer.cs (1)
37=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
MisplacedUsingDirectivesDiagnosticAnalyzer.cs (1)
48=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Microsoft.CodeAnalysis.EditorFeatures (1)
EditAndContinue\EditAndContinueDiagnosticAnalyzer.cs (1)
32=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Diagnostics\DiagnosticServiceTests.vb (1)
2280<InlineData(DiagnosticAnalyzerCategory.SemanticDocumentAnalysis, False)>
Microsoft.CodeAnalysis.ExternalAccess.FSharp (4)
Internal\Diagnostics\FSharpDocumentDiagnosticAnalyzer.cs (1)
97return DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Internal\Diagnostics\FSharpSimplifyNameDiagnosticAnalyzer.cs (1)
75return DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Internal\Diagnostics\FSharpUnusedDeclarationsAnalyzer.cs (1)
77return DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Internal\Diagnostics\FSharpUnusedOpensDiagnosticAnalyzer.cs (1)
70return DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Microsoft.CodeAnalysis.Features (6)
AbstractMakeFieldReadonlyDiagnosticAnalyzer.cs (1)
36public override DiagnosticAnalyzerCategory GetAnalyzerCategory() => DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
AbstractRemoveUnnecessaryAttributeSuppressionsDiagnosticAnalyzer.cs (1)
51public sealed override DiagnosticAnalyzerCategory GetAnalyzerCategory() => DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
AbstractRemoveUnnecessaryImportsDiagnosticAnalyzer.cs (1)
170=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
AbstractRemoveUnnecessaryPragmaSuppressionsDiagnosticAnalyzer.cs (1)
72public sealed override DiagnosticAnalyzerCategory GetAnalyzerCategory() => DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
62public override DiagnosticAnalyzerCategory GetAnalyzerCategory() => DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
AbstractUseAutoPropertyAnalyzer.cs (1)
66=> DiagnosticAnalyzerCategory.SemanticDocumentAnalysis;
Microsoft.CodeAnalysis.Workspaces (4)
DiagnosticAnalyzerCategory.cs (1)
23/// <see cref="SemanticDocumentAnalysis"/>.
Diagnostics\DiagnosticAnalyzerExtensions.cs (3)
15DocumentDiagnosticAnalyzer _ => DiagnosticAnalyzerCategory.SyntaxTreeWithoutSemanticsAnalysis | DiagnosticAnalyzerCategory.SemanticDocumentAnalysis, 23: DiagnosticAnalyzerCategory.SyntaxTreeWithoutSemanticsAnalysis | DiagnosticAnalyzerCategory.SemanticDocumentAnalysis | DiagnosticAnalyzerCategory.ProjectAnalysis 43return (category & (DiagnosticAnalyzerCategory.SemanticSpanAnalysis | DiagnosticAnalyzerCategory.SemanticDocumentAnalysis)) != 0;