(self, op)
| 242 | return result |
| 243 | |
| 244 | def visit_assert_(self, op): |
| 245 | result = super().visit_assert_(op) |
| 246 | self.log.add("AssertStmt") |
| 247 | return result |
| 248 | |
| 249 | def visit_for_(self, op): |
| 250 | result = super().visit_for_(op) |
nothing calls this directly
no test coverage detected