lua-assembler 0.1.1

Parse and write Lua .luac bytecode
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::{formats::luac::view::LuacView, program::LuaProgram};
use gaia_types::GaiaDiagnostics;

impl LuaProgram {
    pub fn to_luac(self) -> GaiaDiagnostics<LuacView> {
        todo!()
    }
}

struct Program2Luac {}