(self, o: CastExpr)
| 410 | return self._visit_unsupported_expr(o) |
| 411 | |
| 412 | def visit_cast_expr(self, o: CastExpr) -> str: |
| 413 | return self._visit_unsupported_expr(o) |
| 414 | |
| 415 | def visit_conditional_expr(self, o: ConditionalExpr) -> str: |
| 416 | return self._visit_unsupported_expr(o) |
nothing calls this directly
no test coverage detected