Skip to main content

luaur_bytecode/methods/
bc_inst_helper_op.rs

1use crate::records::bc_inst_helper::BcInstHelper;
2use crate::records::bc_op::BcOp;
3
4impl BcInstHelper<'_> {
5    pub fn op(&self) -> BcOp {
6        self.inst.op
7    }
8}