| 14 | }; |
| 15 | |
| 16 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 17 | pub struct BinaryProgram { |
| 18 | pub bytecode: String, |
| 19 | pub prophets: Vec<OlaProphet>, |
| 20 | #[serde(skip)] |
| 21 | pub debug_info: Option<BTreeMap<usize, String>>, |
| 22 | } |
| 23 | |
| 24 | impl BinaryProgram { |
nothing calls this directly
no outgoing calls
no test coverage detected