Add APIs for retrieving tree cursor's depth and descendant index

This commit is contained in:
Max Brunsfeld 2023-06-12 11:50:44 -07:00
parent 9dd725b4e3
commit a2119cb691
6 changed files with 47 additions and 28 deletions

View file

@ -615,7 +615,12 @@ extern "C" {
extern "C" {
#[doc = " Get the index of the cursor's current node out of all of the"]
#[doc = " descendants of the original node that the cursor was constructed with."]
pub fn ts_tree_cursor_descendant_index(arg1: *mut TSTreeCursor) -> u32;
pub fn ts_tree_cursor_current_descendant_index(arg1: *const TSTreeCursor) -> u32;
}
extern "C" {
#[doc = " Get the depth of the cursor's current node relative to the original"]
#[doc = " node that the cursor was constructed with."]
pub fn ts_tree_cursor_current_depth(arg1: *const TSTreeCursor) -> u32;
}
extern "C" {
#[doc = " Move the cursor to the first child of its current node that extends beyond"]