Skip to main content

luaur_bytecode/methods/
bc_op_operator_eq.rs

1use crate::records::bc_op::BcOp;
2
3impl BcOp {
4    #[inline]
5    pub fn operator_eq(&self, rhs: &BcOp) -> bool {
6        self.kind == rhs.kind && self.index == rhs.index
7    }
8}