diff options
Diffstat (limited to 'users/tazjin/rlox/src/bytecode/opcode.rs')
-rw-r--r-- | users/tazjin/rlox/src/bytecode/opcode.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/users/tazjin/rlox/src/bytecode/opcode.rs b/users/tazjin/rlox/src/bytecode/opcode.rs index 0f070ce9fffc..057fa7697719 100644 --- a/users/tazjin/rlox/src/bytecode/opcode.rs +++ b/users/tazjin/rlox/src/bytecode/opcode.rs @@ -1,8 +1,13 @@ #[derive(Debug)] pub enum OpCode { - /// Access a constant for use. + /// Push a constant onto the stack. OpConstant(usize), + // Literal pushes + OpNil, + OpTrue, + OpFalse, + /// Return from the current function. OpReturn, |