Match and consume an i8 immediate.
(&mut self, err_msg: &str)
| 787 | |
| 788 | // Match and consume an i8 immediate. |
| 789 | fn match_imm8(&mut self, err_msg: &str) -> ParseResult<i8> { |
| 790 | match_imm!(i8, u8, self, err_msg) |
| 791 | } |
| 792 | |
| 793 | // Match and consume a signed 16-bit immediate. |
| 794 | fn match_imm16(&mut self, err_msg: &str) -> ParseResult<i16> { |
no outgoing calls
no test coverage detected