1use crate::records::bytecode_builder::BytecodeBuilder; 2 3impl BytecodeBuilder { 4 pub fn emit_aux(&mut self, aux: u32) { 5 self.insns.push(aux); 6 self.lines.push(self.debug_line); 7 } 8}