feat(tazjin/rlox): Implement block parsing
Change-Id: I1b7235ed71fa36120984a36f22cd564f59581352 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2303 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
This commit is contained in:
parent
3c979acdf3
commit
8915cd6fba
3 changed files with 23 additions and 6 deletions
|
|
@ -5,6 +5,7 @@ pub enum ErrorKind {
|
|||
UnmatchedParens,
|
||||
ExpectedExpression(String),
|
||||
ExpectedSemicolon,
|
||||
ExpectedClosingBrace,
|
||||
ExpectedVariableName,
|
||||
TypeError(String),
|
||||
UndefinedVariable(String),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue