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:
parent
28002fcea5
commit
4812fc2ee6
2 changed files with 16 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
pub enum ErrorKind {
|
||||
UnexpectedChar(char),
|
||||
UnterminatedString,
|
||||
UnmatchedParens,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue