5 references to FirstAncestorOrSelf
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (2)
2139
if (node.
FirstAncestorOrSelf
<SyntaxNode>(n => n is MarkupStartTagSyntax || n is MarkupEndTagSyntax) != null)
2163
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>(