Skip to main content

luaur_bytecode/methods/
bytecode_builder_set_debug_line.rs

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}