feat(tazjin/rlox): Implement parsing of parenthesised expressions

Change-Id: I0e6bd71fd787b719104ef93fc52df4090dc415b9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2234
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2020-12-06 15:28:16 +01:00 committed by tazjin
parent 28002fcea5
commit 4812fc2ee6
2 changed files with 16 additions and 1 deletions

View file

@ -2,6 +2,7 @@
pub enum ErrorKind {
UnexpectedChar(char),
UnterminatedString,
UnmatchedParens,
}
#[derive(Debug)]