MCPcopy Create free account
hub / github.com/GPPVM-Project/SkyLC / Bytecode

Class Bytecode

crates/skyl-data/src/bytecode.rs:64–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62
63#[derive(Clone, Debug, Serialize, Deserialize, Encode)]
64pub 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
71const BINCODE_CONFIG: Configuration = config::standard();
72

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected