1use crate::records::bytecode_builder::BytecodeBuilder; 2 3impl BytecodeBuilder { 4 pub fn set_debug_line(&mut self, line: i32) { 5 self.debug_line = line; 6 } 7}