Nothing
ts_query_box_use <- "
(call
function: (namespace_operator
lhs: (identifier) @box_pkg (#eq? @box_pkg \"box\")
rhs: (identifier) @box_use (#eq? @box_use \"use\")
)
) @box_call"
ts_query_funcs <- "
(_
lhs: (_)? @mod_path
.
(subset
function: (identifier) @pkg_mod_name
arguments: (arguments
argument: (argument
value: (identifier) @func_name
) @func_call
.
(comma)?
.
(comment)? @comment
)
) @full_call
)"
ts_query_mod <- "
(call
function: (namespace_operator
lhs: (identifier) @box_pkg (#eq? @box_pkg \"box\")
rhs: (identifier) @box_use (#eq? @box_use \"use\"))
arguments: (arguments
argument: (argument
name: (identifier)? @mod_alias
value: (binary_operator
lhs: (_) @path
operator: \"/\"
rhs: [
(identifier) @mod_name
(subset
function: (identifier) @mod_name
)
]
) @full_path
) @mod_call
.
(comma)?
.
(comment)? @comment
)
)"
ts_query_pkg <- "
(call
function: (namespace_operator
lhs: (identifier) @box_pkg (#eq? @box_pkg \"box\")
rhs: (identifier) @box_use (#eq? @box_use \"use\")
)
arguments: (arguments
argument: ((argument
name: (identifier)? @pkg_alias
value: [
(identifier) @pkg_name
(subset
function: (identifier) @pkg_name
)
]
) @pkg_call
.
(comma)?
.
(comment)? @comment
)
)
)"
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.