lua_assembler/formats/luac/view/
to_program.rs1use crate::{formats::luac::view::LuacView, program::LuaProgram};
2use gaia_types::GaiaDiagnostics;
3
4impl LuacView {
5 pub fn to_program(self) -> GaiaDiagnostics<LuaProgram> {
6 todo!()
7 }
8}
9
10struct Luac2Program {}