1 override of IsDirective
Microsoft.CodeAnalysis.CSharp (1)
Syntax\InternalSyntax\DirectiveTriviaSyntax.cs (1)
20
public sealed override bool
IsDirective
=> true;
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;