feat(tazjin/rlox): Implement comparison operators
Change-Id: I03b751db52a3bd502fb4fbda6e89cad087ccad74 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2575 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
This commit is contained in:
parent
c58fe2093e
commit
369f504250
4 changed files with 43 additions and 0 deletions
|
|
@ -14,6 +14,8 @@ pub enum OpCode {
|
|||
// Boolean & comparison operators
|
||||
OpNot,
|
||||
OpEqual,
|
||||
OpGreater,
|
||||
OpLess,
|
||||
|
||||
/// Unary negation
|
||||
OpNegate,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue