11 implementations of IBuiltInAnalyzer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Diagnostics\DiagnosticAnalyzerDriver\DiagnosticAnalyzerDriverTests.cs (1)
184private class ThrowingDoNotCatchDiagnosticAnalyzer<TLanguageKindEnum> : ThrowingDiagnosticAnalyzer<TLanguageKindEnum>, IBuiltInAnalyzer where TLanguageKindEnum : struct
Microsoft.CodeAnalysis.EditorFeatures (1)
EditAndContinue\EditAndContinueDiagnosticAnalyzer.cs (1)
23internal sealed class EditAndContinueDiagnosticAnalyzer : DocumentDiagnosticAnalyzer, IBuiltInAnalyzer
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (1)
Diagnostics\AbstractSuppressionAllCodeTests.cs (1)
142internal class Analyzer : DiagnosticAnalyzer, IBuiltInAnalyzer
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Diagnostics\DiagnosticAnalyzerServiceTests.cs (1)
1275private class OpenFileOnlyAnalyzer : DiagnosticAnalyzer, IBuiltInAnalyzer
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Diagnostics\DiagnosticServiceTests.vb (1)
2486Implements IBuiltInAnalyzer
Microsoft.CodeAnalysis.ExternalAccess.FSharp (3)
Internal\Diagnostics\FSharpDocumentDiagnosticAnalyzer.cs (1)
47internal class FSharpDocumentDiagnosticAnalyzer : DocumentDiagnosticAnalyzer, IBuiltInAnalyzer
Internal\Diagnostics\FSharpSimplifyNameDiagnosticAnalyzer.cs (1)
42internal class FSharpSimplifyNameDiagnosticAnalyzer : DocumentDiagnosticAnalyzer, IBuiltInAnalyzer
Internal\Diagnostics\FSharpUnusedDeclarationsAnalyzer.cs (1)
42internal class FSharpUnusedDeclarationsDiagnosticAnalyzer : DocumentDiagnosticAnalyzer, IBuiltInAnalyzer
Microsoft.CodeAnalysis.Features (3)
AbstractBuiltInCodeStyleDiagnosticAnalyzer_Core.cs (1)
13internal abstract partial class AbstractBuiltInCodeStyleDiagnosticAnalyzer : DiagnosticAnalyzer, IBuiltInAnalyzer
AbstractCodeQualityDiagnosticAnalyzer.cs (1)
13internal abstract class AbstractCodeQualityDiagnosticAnalyzer : DiagnosticAnalyzer, IBuiltInAnalyzer
Diagnostics\Analyzers\UnboundIdentifiersDiagnosticAnalyzerBase.cs (1)
25internal abstract class UnboundIdentifiersDiagnosticAnalyzerBase<TLanguageKindEnum, TSimpleNameSyntax, TQualifiedNameSyntax, TIncompleteMemberSyntax> : DiagnosticAnalyzer, IBuiltInAnalyzer
10 references to IBuiltInAnalyzer
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (3)
Diagnostics\DiagnosticServiceTests.vb (3)
2496Public ReadOnly Property RequestPriority As CodeActionRequestPriority Implements IBuiltInAnalyzer.RequestPriority 2502Public Function GetAnalyzerCategory() As DiagnosticAnalyzerCategory Implements IBuiltInAnalyzer.GetAnalyzerCategory 2506Public Function OpenFileOnly(options As SimplifierOptions) As Boolean Implements IBuiltInAnalyzer.OpenFileOnly
Microsoft.CodeAnalysis.Features (3)
Diagnostics\DiagnosticAnalyzerExtensions.cs (2)
25=> analyzer is IBuiltInAnalyzer || analyzer.IsWorkspaceDiagnosticAnalyzer() || analyzer.IsCompilerAnalyzer(); 28=> analyzer is IBuiltInAnalyzer builtInAnalyzer && builtInAnalyzer.OpenFileOnly(options);
Diagnostics\IDiagnosticAnalyzerService.cs (1)
75/// <see cref="IBuiltInAnalyzer"/>s that support <see cref="DiagnosticAnalyzerCategory.SemanticSpanAnalysis"/>.
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_GetDiagnosticsForSpan.cs (1)
422var analyzerPriority = analyzer is IBuiltInAnalyzer { RequestPriority: var requestPriority }
Microsoft.CodeAnalysis.Workspaces (3)
CodeActions\CodeActionPriority.cs (1)
17/// implement and return <see cref="CodeActionRequestPriority.High"/> for <see cref="IBuiltInAnalyzer.RequestPriority"/>,
Diagnostics\DiagnosticAnalyzerExtensions.cs (1)
17IBuiltInAnalyzer builtInAnalyzer => builtInAnalyzer.GetAnalyzerCategory(),
Diagnostics\DiagnosticAnalyzerInfoCache.cs (1)
138analyzer is IBuiltInAnalyzer ||