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