(self, msg: str, line: int, column: int)
| 395 | self.visitor_cache: dict[type, Callable[[AST | None], Any]] = {} |
| 396 | |
| 397 | def note(self, msg: str, line: int, column: int) -> None: |
| 398 | self.errors.report(line, column, msg, severity="note", code=codes.SYNTAX) |
| 399 | |
| 400 | def fail(self, msg: ErrorMessage, line: int, column: int, blocker: bool) -> None: |
| 401 | if blocker or not self.options.ignore_errors: |