diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-09-28 18:35:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-28 18:35:02 +0200 |
commit | e933426299b44db6715f6f61ab76aee57478110e (patch) | |
tree | ffca71781f4e06460fa9b98be68cb02a23d5e0bd /src/tree_sitter/tree_cursor.h | |
parent | 0d9a3c86a1c7143187398e6cb6005ed06a5e2fde (diff) | |
parent | 9fa850991dbe8984996afdc149b5b32dc248197e (diff) | |
download | rneovim-e933426299b44db6715f6f61ab76aee57478110e.tar.gz rneovim-e933426299b44db6715f6f61ab76aee57478110e.tar.bz2 rneovim-e933426299b44db6715f6f61ab76aee57478110e.zip |
Merge pull request #10124 from bfredl/tree-sitter-api
Tree-sitter step 1: vendor runtime lib + add lua API
Diffstat (limited to 'src/tree_sitter/tree_cursor.h')
-rw-r--r-- | src/tree_sitter/tree_cursor.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tree_sitter/tree_cursor.h b/src/tree_sitter/tree_cursor.h new file mode 100644 index 0000000000..55bdad86da --- /dev/null +++ b/src/tree_sitter/tree_cursor.h @@ -0,0 +1,20 @@ +#ifndef TREE_SITTER_TREE_CURSOR_H_ +#define TREE_SITTER_TREE_CURSOR_H_ + +#include "./subtree.h" + +typedef struct { + const Subtree *subtree; + Length position; + uint32_t child_index; + uint32_t structural_child_index; +} TreeCursorEntry; + +typedef struct { + const TSTree *tree; + Array(TreeCursorEntry) stack; +} TreeCursor; + +void ts_tree_cursor_init(TreeCursor *, TSNode); + +#endif // TREE_SITTER_TREE_CURSOR_H_ |