3 references to IsDirective
Microsoft.CodeAnalysis (3)
Syntax\SyntaxNode.cs (2)
509if (child is { IsDirective: true, RawKind: var childKind } && childKind == rawKind) 513else if (triviaNode.IsDirective && triviaNode.RawKind == rawKind)
Syntax\SyntaxTrivia.cs (1)
197public bool IsDirective => UnderlyingNode?.IsDirective ?? false;