| 6 | |
| 7 | #[derive(Clone)] |
| 8 | pub struct CodeObject { |
| 9 | pub name: String, |
| 10 | pub body: Rc<[u8]>, |
| 11 | pub required_argc: u8, |
| 12 | pub default_argc: u8, |
| 13 | pub frame_size: u8, |
| 14 | pub loc: SourcePointer, |
| 15 | pub line_table: Rc<LineTable>, |
| 16 | } |
| 17 | |
| 18 | impl PartialEq for CodeObject { |
| 19 | fn eq(&self, other: &Self) -> bool { |
no outgoing calls
no test coverage detected
searching dependent graphs…