Base:
property
Children
Microsoft.AspNetCore.Razor.Language.Syntax.RazorBlockSyntax.Children
7 references to Children
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\Syntax\Generated\Syntax.xml.Main.Generated.cs (1)
291=> node.Update(VisitList(node.Children));
Language\Syntax\Generated\Syntax.xml.Syntax.Generated.cs (2)
438if (children != Children) 454public new MarkupCommentBlockSyntax AddChildren(params RazorSyntaxNode[] items) => WithChildren(this.Children.AddRange(items));
Microsoft.CodeAnalysis.Razor.Workspaces (4)
SemanticTokens\SemanticTokensVisitor.cs (4)
148AddSemanticRange(node.Children[0], tokenTypes.MarkupCommentPunctuation); 150for (var i = 1; i < node.Children.Count - 1; i++) 152var commentNode = node.Children[i]; 164AddSemanticRange(node.Children[^1], tokenTypes.MarkupCommentPunctuation);