(self, o: ListComprehension)
| 416 | return self._visit_unsupported_expr(o) |
| 417 | |
| 418 | def visit_list_comprehension(self, o: ListComprehension) -> str: |
| 419 | return self._visit_unsupported_expr(o) |
| 420 | |
| 421 | def visit_set_comprehension(self, o: SetComprehension) -> str: |
| 422 | return self._visit_unsupported_expr(o) |
nothing calls this directly
no test coverage detected