(self, op: Call)
| 116 | self.log.pop_scope() |
| 117 | |
| 118 | def visit_call_(self, op: Call) -> None: |
| 119 | self.log.add("Call") |
| 120 | self.log.push_scope() |
| 121 | self.visit_expr(op.op) |
| 122 | |
| 123 | for arg in op.args: |
| 124 | self.visit_expr(arg) |
| 125 | self.log.pop_scope() |
| 126 | |
| 127 | def visit_if_(self, op: If) -> None: |
| 128 | self.log.add("If") |
no test coverage detected