This commit is contained in:
Maieul BOYER 2024-04-30 13:42:00 +02:00
parent 54cefca53f
commit 019d25174c
No known key found for this signature in database
24 changed files with 388 additions and 363 deletions

View file

@ -10,7 +10,7 @@ extern "C" {
typedef struct {
const Subtree *child;
const Subtree *parent;
Length position;
t_parse_length position;
t_symbol alias_symbol;
} ParentCacheEntry;
@ -22,7 +22,7 @@ struct t_parse_tree {
};
t_parse_tree *ts_tree_new(Subtree root, const t_language *language, const t_parser_range *, unsigned);
t_parse_node ts_node_new(const t_parse_tree *, const Subtree *, Length, t_symbol);
t_parse_node ts_node_new(const t_parse_tree *, const Subtree *, t_parse_length, t_symbol);
#ifdef __cplusplus
}