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)
438
if (children !=
Children
)
454
public new MarkupCommentBlockSyntax AddChildren(params RazorSyntaxNode[] items) => WithChildren(this.
Children
.AddRange(items));
Microsoft.CodeAnalysis.Razor.Workspaces (4)
SemanticTokens\SemanticTokensVisitor.cs (4)
148
AddSemanticRange(node.
Children
[0], tokenTypes.MarkupCommentPunctuation);
150
for (var i = 1; i < node.
Children
.Count - 1; i++)
152
var commentNode = node.
Children
[i];
164
AddSemanticRange(node.
Children
[^1], tokenTypes.MarkupCommentPunctuation);