| 62 | |
| 63 | #[derive(Clone, Debug, Serialize, Deserialize, Encode)] |
| 64 | pub struct Bytecode { |
| 65 | pub functions: HashMap<u32, VirtualFunction>, |
| 66 | pub native_functions: HashMap<String, NativeFunctionInfo>, |
| 67 | pub v_tables: HashMap<u32, Vec<VirtualFunction>>, |
| 68 | pub main: Option<VirtualFunction>, |
| 69 | } |
| 70 | |
| 71 | const BINCODE_CONFIG: Configuration = config::standard(); |
| 72 |
nothing calls this directly
no outgoing calls
no test coverage detected