9 references to FindDirectiveReferences
Microsoft.CodeAnalysis.Razor.Compiler (9)
Language\Components\ComponentDocumentClassifierPass.cs (1)
110foreach (var typeParamReference in documentNode.FindDirectiveReferences(directiveType))
Language\Components\ComponentLayoutDirectivePass.cs (1)
24var directives = documentNode.FindDirectiveReferences(ComponentLayoutDirective.Directive);
Language\Components\ComponentPageDirectivePass.cs (1)
25var directives = documentNode.FindDirectiveReferences(ComponentPageDirective.Directive);
Language\Components\ComponentRenderModeDirectivePass.cs (1)
27var directives = documentNode.FindDirectiveReferences(ComponentRenderModeDirective.Directive);
Language\Components\ComponentWhitespacePass.cs (1)
70foreach (var preserveWhitespaceDirective in documentNode.FindDirectiveReferences(ComponentPreserveWhitespaceDirective.Directive))
Language\Extensions\AttributeDirectivePass.cs (1)
25foreach (var attribute in documentNode.FindDirectiveReferences(AttributeDirective.Directive))
Language\Extensions\ImplementsDirectivePass.cs (1)
28foreach (var implements in documentNode.FindDirectiveReferences(ImplementsDirective.Directive))
Language\Extensions\InheritsDirectivePass.cs (1)
23foreach (var inherits in documentNode.FindDirectiveReferences(InheritsDirective.Directive))
Language\Extensions\SectionDirectivePass.cs (1)
23foreach (var directive in documentNode.FindDirectiveReferences(SectionDirective.Directive))