luaur-compiler 0.1.1

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::functions::set_compile_constant_integer_64::set_compile_constant_integer_64;
use crate::type_aliases::compile_constant::CompileConstant;
use crate::type_aliases::lua_compile_constant::lua_CompileConstant;

#[allow(non_snake_case)]
pub fn luau_set_compile_constant_integer_64(constant: *mut lua_CompileConstant, l: i64) {
    set_compile_constant_integer_64(constant as CompileConstant, l);
}