node-child-count | R Documentation |
These functions return the number of children of x
.
node_child_count()
considers both named and anonymous children.
node_named_child_count()
considers only named children.
node_child_count(x)
node_named_child_count(x)
x |
A node. |
A single integer, the number of children of x
.
language <- treesitter.r::language()
parser <- parser(language)
text <- "fn <- function() { 1 + 1 }"
tree <- parser_parse(parser, text)
node <- tree_root_node(tree)
# Navigate to first child
node <- node_child(node, 1)
node
# Note how the named variant doesn't count the anonymous operator node
node_child_count(node)
node_named_child_count(node)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.