(&mut self)
| 393 | } |
| 394 | |
| 395 | fn bump_name(&mut self) -> Name { |
| 396 | let text = self.current_token_text(); |
| 397 | let name = if !self.tokens.current_flags().is_non_ascii_name() { |
| 398 | Name::new(text) |
| 399 | } else { |
| 400 | normalize_name(text) |
| 401 | }; |
| 402 | self.bump(TokenKind::Name); |
| 403 | name |
| 404 | } |
| 405 | |
| 406 | fn bump_int(&mut self) -> Int { |
| 407 | let text = self.current_token_text(); |
no test coverage detected