| 6 | /// Models the program counter, i.e. the address of an instruction in the bytecode of a method |
| 7 | #[derive(Debug, PartialEq, Eq, Clone, Copy, PartialOrd, Ord)] |
| 8 | pub struct ProgramCounter(pub u16); |
| 9 | |
| 10 | impl Display for ProgramCounter { |
| 11 | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { |
no outgoing calls