hook up LALR backend stub

This commit is contained in:
Sven M. Hallberg 2013-06-04 22:14:06 +02:00
parent ef52f66a8c
commit 976205f9da
5 changed files with 93 additions and 4 deletions

View file

@ -34,11 +34,11 @@ typedef struct HParseState_ HParseState;
typedef enum HParserBackend_ {
PB_MIN = 0,
PB_PACKRAT = PB_MIN, // PB_MIN is always the default.
PB_REGULAR, //
PB_LLk, //
PB_LALR, // Not Implemented
PB_REGULAR,
PB_LLk,
PB_LALR,
PB_GLR, // Not Implemented
PB_MAX = PB_LLk
PB_MAX = PB_LALR
} HParserBackend;
typedef enum HTokenType_ {