| 2 | use haxby_opcodes::Opcode; |
| 3 | |
| 4 | pub struct BytecodeReader { |
| 5 | data: Vec<u8>, |
| 6 | idx: usize, |
| 7 | } |
| 8 | |
| 9 | impl From<&[u8]> for BytecodeReader { |
| 10 | fn from(value: &[u8]) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…