Add {next,prev}_concrete_sibling Node methods
This commit is contained in:
parent
c3f3f19ea8
commit
245daffbc4
7 changed files with 208 additions and 142 deletions
|
|
@ -55,9 +55,13 @@ TSNode ts_node_concrete_child(TSNode, size_t);
|
|||
size_t ts_node_concrete_child_count(TSNode);
|
||||
TSNode ts_node_find_for_pos(TSNode, size_t);
|
||||
TSNode ts_node_find_for_range(TSNode, size_t, size_t);
|
||||
TSNode ts_node_find_concrete_for_pos(TSNode, size_t);
|
||||
TSNode ts_node_find_concrete_for_range(TSNode, size_t, size_t);
|
||||
TSNode ts_node_parent(TSNode);
|
||||
TSNode ts_node_next_sibling(TSNode);
|
||||
TSNode ts_node_prev_sibling(TSNode);
|
||||
TSNode ts_node_next_concrete_sibling(TSNode);
|
||||
TSNode ts_node_prev_concrete_sibling(TSNode);
|
||||
const char *ts_node_name(TSNode, const TSDocument *);
|
||||
const char *ts_node_string(TSNode, const TSDocument *);
|
||||
bool ts_node_eq(TSNode, TSNode);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue