feat(tazjin/rlox): Parse variable assignment & access

Change-Id: I9894d76716d739e85a4757d9e658f884228e7f52
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2290
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2020-12-22 15:44:25 +01:00 committed by tazjin
parent 5010b79718
commit 0f9a7b3f86
3 changed files with 46 additions and 3 deletions

View file

@ -5,6 +5,7 @@ pub enum ErrorKind {
UnmatchedParens,
ExpectedExpression(String),
ExpectedSemicolon,
ExpectedVariableName,
TypeError(String),
}