luaur-code-gen 0.1.6

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
use crate::records::block_vm_reg_live_in_computation::BlockVmRegLiveInComputation;

#[export_name = "luaur_block_vm_reg_live_in_computation_capture"]
pub extern "C" fn block_vm_reg_live_in_computation_capture(
    this: &mut BlockVmRegLiveInComputation,
    reg: i32,
) {
    this.capture(reg);
}