Skip to main content

luaur_bytecode/methods/
bytecode_builder_needs_debug_remarks.rs

1use crate::enums::dump_flags::DumpFlags;
2use crate::records::bytecode_builder::BytecodeBuilder;
3
4impl BytecodeBuilder {
5    pub fn needs_debug_remarks(&self) -> bool {
6        (self.dump_flags & DumpFlags::Dump_Remarks as u32) != 0
7    }
8}