6 references to FirstAncestorOrSelf
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (3)
540
var directive = node.
FirstAncestorOrSelf
<SyntaxNode>(static n => n is BaseRazorDirectiveSyntax);
2210
if (node.
FirstAncestorOrSelf
<SyntaxNode>(n => n is MarkupStartTagSyntax || n is MarkupEndTagSyntax) != null)
2234
if (node.
FirstAncestorOrSelf
<SyntaxNode>(n => n is CSharpImplicitExpressionSyntax) == null)
Language\Legacy\TagHelperParseTreeRewriter.cs (3)
222
var tagParent = node.
FirstAncestorOrSelf
<SyntaxNode>(n => n is MarkupStartTagSyntax || n is MarkupEndTagSyntax);
677
var parent = node.
FirstAncestorOrSelf
<SyntaxNode>(static n =>
687
var commentParent = node.
FirstAncestorOrSelf
<SyntaxNode>(