python_assembler/formats/pyc/view/
to_pyc.rs

1use crate::{formats::pyc::view::PycView, program::PythonProgram};
2use gaia_types::GaiaDiagnostics;
3
4impl PythonProgram {
5    pub fn to_luac(self) -> GaiaDiagnostics<PycView> {
6        todo!()
7    }
8}
9
10struct Program2Luac {}