(self, op: Function)
| 107 | self.log.add("DataflowVar") |
| 108 | |
| 109 | def visit_function_(self, op: Function) -> None: |
| 110 | self.log.add("Function") |
| 111 | self.log.push_scope() |
| 112 | for param in op.params: |
| 113 | self.visit_var_def(param) |
| 114 | |
| 115 | self.visit_expr(op.body) |
| 116 | self.log.pop_scope() |
| 117 | |
| 118 | def visit_call_(self, op: Call) -> None: |
| 119 | self.log.add("Call") |
nothing calls this directly
no test coverage detected