(&mut self)
| 429 | } |
| 430 | |
| 431 | fn bump_complex(&mut self) -> (f64, f64) { |
| 432 | let text = self.current_token_text(); |
| 433 | let value = f64::from_str(&strip_underscores(&text[..text.len() - 1])) |
| 434 | .expect("lexer validated complex literal"); |
| 435 | self.bump(TokenKind::Complex); |
| 436 | (0.0, value) |
| 437 | } |
| 438 | |
| 439 | fn bump_string_value(&mut self) -> &'src str { |
| 440 | let range = self.current_token_range(); |
no test coverage detected