Whoops. Meant to compile that first

This commit is contained in:
Dan Hirsch 2013-03-17 22:01:54 -07:00
parent 17b03dbf4d
commit f5245eaa23
3 changed files with 10 additions and 9 deletions

View file

@ -117,11 +117,12 @@ typedef const HParsedToken* (*HAction)(const HParseResult *p);
*/
typedef bool (*HPredicate)(HParseResult *p);
typedef struct HRVMProg_ HRVMProg;
typedef struct HParserVtable_ {
HParseResult* (*parse)(void *env, HParseState *state);
bool (*isValidRegular)(void *env);
bool (*isValidCF)(void *env);
bool (*compile_to_rvm)(struct HRVMProg_ *prog, void* env);
bool (*compile_to_rvm)(HRVMProg *prog, void* env);
} HParserVtable;
typedef struct HParser_ {