(self, op)
| 92 | self.log.pop_scope() |
| 93 | |
| 94 | def visit_while_(self, op): |
| 95 | self.log.add("While") |
| 96 | self.log.push_scope() |
| 97 | self.visit_expr(op.condition) |
| 98 | self.visit_stmt(op.body) |
| 99 | self.log.pop_scope() |
| 100 | |
| 101 | def visit_buffer_store_(self, op): |
| 102 | self.log.add("BufferStore") |
no test coverage detected