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