Skip to main content

luaur_code_gen/records/
shared_code_gen_context.rs

1extern crate alloc;
2
3use crate::records::base_code_gen_context::BaseCodeGenContext;
4use crate::records::shared_code_allocator::SharedCodeAllocator;
5
6#[derive(Debug)]
7#[repr(C)]
8pub struct SharedCodeGenContext {
9    pub base: BaseCodeGenContext,
10    pub(crate) shared_allocator: SharedCodeAllocator,
11}