Rename ParseStack -> Stack

This commit is contained in:
Max Brunsfeld 2015-09-18 18:04:52 -07:00
parent b3d883e128
commit 6254f45c1b
6 changed files with 218 additions and 226 deletions

View file

@ -5,11 +5,11 @@
extern "C" {
#endif
#include "runtime/parse_stack.h"
#include "runtime/stack.h"
typedef struct {
TSLexer lexer;
ParseStack *stack;
Stack *stack;
TSTree *lookahead;
TSTree *previous_tree;
TSTree *reusable_subtree;