(&mut self)
| 422 | } |
| 423 | |
| 424 | fn bump_float(&mut self) -> f64 { |
| 425 | let value = f64::from_str(&strip_underscores(self.current_token_text())) |
| 426 | .expect("lexer validated float literal"); |
| 427 | self.bump(TokenKind::Float); |
| 428 | value |
| 429 | } |
| 430 | |
| 431 | fn bump_complex(&mut self) -> (f64, f64) { |
| 432 | let text = self.current_token_text(); |
no test coverage detected