(&self, message: &str)
| 681 | } |
| 682 | |
| 683 | fn error(&self, message: &str) -> ParseError { |
| 684 | ParseError { |
| 685 | location: self.loc, |
| 686 | message: message.to_string(), |
| 687 | is_warning: false, |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | // Match and consume an Imm64 immediate. |
| 692 | fn match_imm64(&mut self, err_msg: &str) -> ParseResult<Imm64> { |
no test coverage detected