1 override of ApplyDirectives
Microsoft.CodeAnalysis.CSharp (1)
Syntax\InternalSyntax\SyntaxToken.cs (1)
356internal override DirectiveStack ApplyDirectives(DirectiveStack stack)
5 references to ApplyDirectives
Microsoft.CodeAnalysis.CSharp (5)
CSharpExtensions.cs (2)
324return ((Syntax.InternalSyntax.CSharpSyntaxNode)node.Green).ApplyDirectives(stack); 329return ((Syntax.InternalSyntax.CSharpSyntaxNode)token.Node!).ApplyDirectives(stack);
Parser\Lexer.cs (1)
2385_directives = directive.ApplyDirectives(_directives);
Syntax\CSharpSyntaxTree.cs (1)
163InternalSyntax.DirectiveStack.InterlockedInitialize(ref _lazyDirectives, GetRoot().CsGreen.ApplyDirectives(InternalSyntax.DirectiveStack.Empty));
Syntax\InternalSyntax\CSharpSyntaxNode.cs (1)
172return ((CSharpSyntaxNode)listOrNode).ApplyDirectives(stack);