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