luaur-code-gen 0.1.1

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate alloc;

use crate::records::base_code_gen_context::BaseCodeGenContext;
use crate::records::shared_code_allocator::SharedCodeAllocator;

#[derive(Debug)]
#[repr(C)]
pub struct SharedCodeGenContext {
    pub base: BaseCodeGenContext,
    pub(crate) shared_allocator: SharedCodeAllocator,
}