Type check a node in the given type context.
(self, stmt: Statement)
| 760 | self.msg.cannot_determine_type(name, context) |
| 761 | |
| 762 | def accept(self, stmt: Statement) -> None: |
| 763 | """Type check a node in the given type context.""" |
| 764 | try: |
| 765 | stmt.accept(self) |
| 766 | except Exception as err: |
| 767 | report_internal_error(err, self.errors.file, stmt.line, self.errors, self.options) |
| 768 | |
| 769 | def accept_loop( |
| 770 | self, |
no test coverage detected