feat(tazjin/rlox): Global variable assignment

Needed for example code compatibility.

Change-Id: Id83210eaaad7dcfef5aa238dd3a7ec159f6935e9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3684
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Vincent Ambo 2021-10-02 15:55:58 +03:00 committed by tazjin
parent 6a38600ce8
commit ad7e591c80
4 changed files with 38 additions and 3 deletions

View file

@ -33,4 +33,5 @@ pub enum OpCode {
// Variable management
OpDefineGlobal(usize),
OpGetGlobal(usize),
OpSetGlobal(usize),
}