feat(tazjin/rlox): Implement function call evaluation

Change-Id: I6767c3a1a9654475b4066415f8c026b9c5b5907a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2382
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2021-01-14 03:14:59 +03:00 committed by tazjin
parent 090c96eae9
commit 26544aa5f0
2 changed files with 34 additions and 2 deletions

View file

@ -12,6 +12,7 @@ pub enum ErrorKind {
UndefinedVariable(String),
InternalError(String),
InvalidAssignmentTarget(String),
RuntimeError(String),
}
#[derive(Debug)]