Remove unnecessary accessor functions for tree

This commit is contained in:
Max Brunsfeld 2014-07-14 21:11:15 -07:00
parent 6e551d6d9f
commit 25f927e321
9 changed files with 41 additions and 55 deletions

View file

@ -23,10 +23,7 @@ char * ts_tree_string(const TSTree *tree, const char **names);
char * ts_tree_error_string(const TSTree *tree, const char **names);
TSTree ** ts_tree_children(const TSTree *tree, size_t *count);
TSTree ** ts_tree_immediate_children(const TSTree *tree, size_t *count);
size_t ts_tree_size(const TSTree *tree);
size_t ts_tree_offset(const TSTree *tree);
size_t ts_tree_total_size(const TSTree *tree);
TSSymbol ts_tree_symbol(const TSTree *tree);
typedef struct {
void *data;