hook up LALR backend stub
This commit is contained in:
parent
ef52f66a8c
commit
976205f9da
5 changed files with 93 additions and 4 deletions
|
|
@ -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_ {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue