add error handling
This commit is contained in:
parent
c5643424ca
commit
3bb2e6516e
2 changed files with 26 additions and 24 deletions
|
@ -1,4 +1,5 @@
|
|||
pub mod ast;
|
||||
pub mod dynval;
|
||||
pub mod error;
|
||||
mod lalrpop_helpers;
|
||||
mod lexer;
|
||||
|
|
|
@ -35,6 +35,7 @@ extern {
|
|||
"[" => Token::LBrack,
|
||||
"]" => Token::RBrack,
|
||||
"." => Token::Dot,
|
||||
|
||||
"true" => Token::True,
|
||||
"false" => Token::False,
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue