Rename Vector -> Array

This commit is contained in:
Max Brunsfeld 2016-02-17 20:41:29 -08:00
parent 6fa7eca966
commit 3d7df851b5
8 changed files with 152 additions and 155 deletions

View file

@ -6,7 +6,7 @@ extern "C" {
#endif
#include "runtime/stack.h"
#include "runtime/vector.h"
#include "runtime/array.h"
typedef struct LookaheadState LookaheadState;
@ -14,8 +14,8 @@ typedef struct {
TSLexer lexer;
Stack *stack;
const TSLanguage *language;
Vector(LookaheadState) lookahead_states;
Vector(TSTree *) reduce_parents;
Array(LookaheadState) lookahead_states;
Array(TSTree *) reduce_parents;
TSTree *finished_tree;
bool is_split;
} TSParser;