Skip to main content

luaur_bytecode/methods/
bytecode_graph_serializer_get_vm_const_input_aux.rs

1use crate::records::bc_inst::BcInst;
2use crate::records::bytecode_graph_serializer::BytecodeGraphSerializer;
3
4impl<'a> BytecodeGraphSerializer<'a> {
5    pub fn get_vm_const_input_aux(&mut self, insn: &mut BcInst, index: u8) -> u32 {
6        self.get_vm_const_input_raw(insn, index)
7    }
8}