node_descendant_count | R Documentation |
Returns the number of descendants of this node, including this node in the count.
node_descendant_count(x)
x |
A node. |
A single double.
language <- treesitter.r::language()
parser <- parser(language)
text <- "fn <- function() { 1 + 1 }"
tree <- parser_parse(parser, text)
node <- tree_root_node(tree)
# Top level program node
node_descendant_count(node)
# The whole `<-` binary operator node
node <- node_child(node, 1)
node_descendant_count(node)
# Just the literal `<-` operator itself
node <- node_child_by_field_name(node, "operator")
node_descendant_count(node)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.