(self, o: ComparisonExpr)
| 407 | return self.stubgen.add_name("_typeshed.Incomplete") |
| 408 | |
| 409 | def visit_comparison_expr(self, o: ComparisonExpr) -> str: |
| 410 | return self._visit_unsupported_expr(o) |
| 411 | |
| 412 | def visit_cast_expr(self, o: CastExpr) -> str: |
| 413 | return self._visit_unsupported_expr(o) |
nothing calls this directly
no test coverage detected