Starting work on Scala-style left-recursion caching.

This commit is contained in:
Meredith L. Patterson 2012-05-12 21:26:15 +01:00
parent 60fd846b2f
commit e748b9c4cb
3 changed files with 18 additions and 29 deletions

View file

@ -70,7 +70,7 @@ typedef struct parsed_token {
uint64_t uint;
double dbl;
float flt;
GSequence *seq;
GSequence *seq; // a sequence of parsed_token_t's
};
} parsed_token_t;