1 override of IsAnalyzeNodeSupported
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
CSharpTrackingDiagnosticAnalyzer.cs (1)
27protected override bool IsAnalyzeNodeSupported(SyntaxKind syntaxKind)
2 references to IsAnalyzeNodeSupported
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
CSharpTrackingDiagnosticAnalyzer.cs (1)
29return base.IsAnalyzeNodeSupported(syntaxKind) && !s_omittedSyntaxKindRegex.IsMatch(syntaxKind.ToString());
Microsoft.CodeAnalysis.Test.Utilities (1)
Diagnostics\TrackingDiagnosticAnalyzer.cs (1)
98var expectedSyntaxKinds = AllSyntaxKinds.Where(IsAnalyzeNodeSupported);