Nothing
source("helpers.R")
src <- "
print('hi')
print('hello')
"
root <- src |>
tree_new() |>
tree_root()
# TODO: this should be kind = "string" but in the tree-sitter-r grammar the
# argument contains "name" and "value" so only the "value" is of kind "string"
# https://github.com/r-lib/tree-sitter-r/blob/main/src/node-types.json
expect_equal(
root |>
node_find(ast_rule(pattern = "print($A)")) |>
node_get_match("A") |>
node_matches(ast_rule(kind = "argument")),
list(rule_1 = list(TRUE))
)
# TODO: should work
# expect_equal(
# root |>
# node_find_all(ast_rule(pattern = "print($A)")) |>
# node_get_match("A") |>
# node_matches(ast_rule(kind = "argument")),
# list(rule_1 = list(TRUE, TRUE))
# )
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.