is_tree: Is 'x' a tree?

View source: R/tree.R

is_treeR Documentation

Is x a tree?

Description

Checks if x is a tree_sitter_tree or not.

Usage

is_tree(x)

Arguments

x

⁠[object]⁠

An object.

Value

TRUE if x is a tree_sitter_tree, otherwise FALSE.

Examples


language <- treesitter.r::language()
parser <- parser(language)

text <- "fn <- function() { 1 + 1 }"
tree <- parser_parse(parser, text)

is_tree(tree)

is_tree(1)


treesitter documentation built on June 24, 2024, 5:07 p.m.