dotfiles/mzte-nv/src/modules/compile.zig
2023-02-23 10:56:20 +01:00

20 lines
517 B
Zig

//! Module for compiling lua files using luajit
//! and mzte-nv-compiler.
const std = @import("std");
const ser = @import("../ser.zig");
const ffi = @import("../ffi.zig");
const c = ffi.c;
const compiler = @import("../compiler.zig");
pub fn luaPush(l: *c.lua_State) void {
ser.luaPushAny(l, .{
.compilePath = ffi.luaFunc(lCompilePath),
});
}
fn lCompilePath(l: *c.lua_State) !c_int {
const path = ffi.luaCheckstring(l, 1);
try compiler.doCompile(path, std.heap.c_allocator);
return 0;
}