(self, op: Call)
| 584 | self.log = ASTLog() |
| 585 | |
| 586 | def visit_call_(self, op: Call) -> None: |
| 587 | self.log.add("InternalCall") |
| 588 | self.log.push_scope() |
| 589 | self.visit_expr(op.op) |
| 590 | |
| 591 | for arg in op.args: |
| 592 | self.visit_expr(arg) |
| 593 | self.log.pop_scope() |
| 594 | |
| 595 | def visit_var_(self, op: Var) -> None: |
| 596 | self.log.add("Var") |
nothing calls this directly
no test coverage detected