1use luaur_common::enums::luau_opcode::LuauOpcode; 2 3#[inline] 4pub fn is_skip_c(op: LuauOpcode) -> bool { 5 matches!(op, LuauOpcode::LOP_LOADB) 6}