luaur_code_gen/records/
bytecode_mapping.rs1#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash)]
2#[repr(C)]
3pub struct BytecodeMapping {
4 pub ir_location: u32,
5 pub asm_location: u32,
6}
7
8#[allow(non_upper_case_globals)]
9impl BytecodeMapping {
10 pub const irLocation: u32 = 0;
11 pub const asmLocation: u32 = 0;
12}