Skip to main content

luaur_bytecode/records/
jump_info.rs

1use crate::records::bc_op::BcOp;
2use luaur_common::enums::luau_opcode::LuauOpcode;
3
4#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
5pub struct JumpInfo {
6    pub(crate) op: LuauOpcode,
7    pub(crate) instructionPC: u32,
8    pub(crate) targetBlock: BcOp,
9}