(self, token_type: TokenType)
| 63 | return self.tokens[self.pos - 1] |
| 64 | |
| 65 | def check(self, token_type: TokenType) -> bool: |
| 66 | return self.current().type == token_type |
| 67 | |
| 68 | def match(self, *types: TokenType) -> bool: |
| 69 | for token_type in types: |
no test coverage detected