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 LuacView {
    pub fn to_program(self) -> GaiaDiagnostics<LuaProgram> {
        todo!()
    }
}

struct Luac2Program {}