diff options
author | Vincent Ambo <mail@tazj.in> | 2021-01-17T21·08+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-01-17T21·17+0000 |
commit | d6d3c12efbcec61b3d868bc7d3f861fdb91835a5 (patch) | |
tree | feabb720b4412f15ee798d095d3705ea8b3dd193 /users/tazjin/rlox/src/bytecode/opcode.rs | |
parent | 7fb93fb49008491184a7d55ccd43db846452dce0 (diff) |
feat(tazjin/rlox): Implement simple arithmetic operators r/2128
Change-Id: I9873bcd281053f4e9820a5119f5992a0b8cb8cfc Reviewed-on: https://cl.tvl.fyi/c/depot/+/2417 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/rlox/src/bytecode/opcode.rs')
-rw-r--r-- | users/tazjin/rlox/src/bytecode/opcode.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/tazjin/rlox/src/bytecode/opcode.rs b/users/tazjin/rlox/src/bytecode/opcode.rs index f2b6a9f1baf3..0f070ce9fffc 100644 --- a/users/tazjin/rlox/src/bytecode/opcode.rs +++ b/users/tazjin/rlox/src/bytecode/opcode.rs @@ -5,4 +5,13 @@ pub enum OpCode { /// Return from the current function. OpReturn, + + /// Unary negation + OpNegate, + + // Arithmetic operators + OpAdd, + OpSubtract, + OpMultiply, + OpDivide, } |