(self, func: Callable[..., object], *args: object)
| 284 | return ok |
| 285 | |
| 286 | def negative_lookahead(self, func: Callable[..., object], *args: object) -> bool: |
| 287 | mark = self._mark() |
| 288 | ok = func(*args) |
| 289 | self._reset(mark) |
| 290 | return not ok |
| 291 | |
| 292 | def make_syntax_error(self, message: str, filename: str = "<unknown>") -> SyntaxError: |
| 293 | tok = self._tokenizer.diagnose() |
no test coverage detected