Skip to main content

luaur_bytecode/records/
bc_proj.rs

1use crate::records::bc_op::BcOp;
2
3#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
4pub struct BcProj {
5    pub op: BcOp,
6    pub index: u32,
7}