(self, o: AssignmentExpr)
| 312 | super().visit_index_expr(o) |
| 313 | |
| 314 | def visit_assignment_expr(self, o: AssignmentExpr) -> None: |
| 315 | self.process_node(o) |
| 316 | super().visit_assignment_expr(o) |
| 317 | |
| 318 | def visit_unary_expr(self, o: UnaryExpr) -> None: |
| 319 | self.process_node(o) |
nothing calls this directly
no test coverage detected