| 8 | |
| 9 | #[derive(Clone, PartialEq, Eq)] |
| 10 | pub struct CompiledCodeObject { |
| 11 | pub name: String, |
| 12 | pub body: Vec<u8>, |
| 13 | pub required_argc: u8, // arguments that are required to call this function |
| 14 | pub default_argc: u8, // additional arguments that this function can accept |
| 15 | pub loc: SourcePointer, |
| 16 | pub line_table: LineTable, |
| 17 | pub frame_size: u8, |
| 18 | } |
| 19 | |
| 20 | #[derive(Clone, Copy)] |
| 21 | pub struct FpConst(f64); |
no outgoing calls
no test coverage detected
searching dependent graphs…