Rename type ts_tree -> TSTree

This commit is contained in:
Max Brunsfeld 2014-06-28 18:45:22 -07:00
parent 2795078633
commit 5f59de72a8
16 changed files with 120 additions and 120 deletions

View file

@ -3,7 +3,7 @@
#include "tree_sitter/runtime.h"
struct ts_tree {
struct TSTree {
ts_symbol symbol;
size_t ref_count;
size_t offset;
@ -13,7 +13,7 @@ struct ts_tree {
struct {
size_t count;
size_t immediate_count;
struct ts_tree **contents;
struct TSTree **contents;
} children;
struct {
char lookahead_char;