(&self, kind: TokenType)
| 880 | } |
| 881 | |
| 882 | pub fn check(&self, kind: TokenType) -> bool { |
| 883 | self.current.kind == kind |
| 884 | } |
| 885 | pub fn check_either(&self, k1: TokenType, k2: TokenType) -> bool { |
| 886 | self.check(k1) || self.check(k2) |
| 887 | } |
no outgoing calls
no test coverage detected