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