(self, msg: str, line: int)
| 1575 | self.errors.error(msg, self.module_path, line) |
| 1576 | |
| 1577 | def note(self, msg: str, line: int) -> None: |
| 1578 | self.errors.note(msg, self.module_path, line) |
| 1579 | |
| 1580 | def add_function(self, func_ir: FuncIR, line: int) -> None: |
| 1581 | name = (func_ir.class_name, func_ir.name) |
no outgoing calls
no test coverage detected