| 151 | |
| 152 | |
| 153 | class FuncCounterVisitor(TraverserVisitor): |
| 154 | def __init__(self) -> None: |
| 155 | super().__init__() |
| 156 | self.counts = [0, 0] |
| 157 | |
| 158 | def visit_func_def(self, defn: FuncDef) -> None: |
| 159 | self.counts[defn.type is not None] += 1 |
| 160 | |
| 161 | |
| 162 | class LineCountReporter(AbstractReporter): |
no outgoing calls
no test coverage detected
searching dependent graphs…