(self, msg: str, ctx: Context, *, code: ErrorCode | None = None)
| 1809 | self.fail_func(msg, ctx, code=code) |
| 1810 | |
| 1811 | def note(self, msg: str, ctx: Context, *, code: ErrorCode | None = None) -> None: |
| 1812 | self.note_func(msg, ctx, code=code) |
| 1813 | |
| 1814 | @contextmanager |
| 1815 | def tvar_scope_frame(self, namespace: str) -> Iterator[None]: |
no outgoing calls
no test coverage detected