Left-recursion caching strategy about halfway implemented. Compiles, DOES NOT RUN.

This commit is contained in:
Meredith L. Patterson 2012-05-13 01:18:18 +01:00
parent 0164ddc98d
commit e6eb2efa88
3 changed files with 71 additions and 27 deletions

View file

@ -43,6 +43,7 @@ typedef struct input_stream {
char bit_offset;
char endianness;
char overrun;
GQueue *lr_stack;
} input_stream_t;
typedef struct parse_state {