feat(tazjin/rlox): Implement equality operator
Change-Id: I5587a11646e228c5af4dc7ca6da026bb4a2592a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2574 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
This commit is contained in:
parent
93c30b339c
commit
c58fe2093e
4 changed files with 50 additions and 6 deletions
|
|
@ -11,8 +11,9 @@ pub enum OpCode {
|
|||
/// Return from the current function.
|
||||
OpReturn,
|
||||
|
||||
// Boolean operators
|
||||
// Boolean & comparison operators
|
||||
OpNot,
|
||||
OpEqual,
|
||||
|
||||
/// Unary negation
|
||||
OpNegate,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue