(self, op)
| 76 | self.log.pop_scope() |
| 77 | |
| 78 | def visit_assert_(self, op): |
| 79 | self.log.add("AssertStmt") |
| 80 | self.log.push_scope() |
| 81 | self.visit_expr(op.condition) |
| 82 | self.visit_expr(op.message) |
| 83 | self.visit_stmt(op.body) |
| 84 | self.log.pop_scope() |
| 85 | |
| 86 | def visit_for_(self, op): |
| 87 | self.log.add("For") |
no test coverage detected