(self, visitor: ExpressionVisitor[T])
| 3494 | self.type = type |
| 3495 | |
| 3496 | def accept(self, visitor: ExpressionVisitor[T]) -> T: |
| 3497 | return visitor.visit__promote_expr(self) |
| 3498 | |
| 3499 | |
| 3500 | class NewTypeExpr(Expression): |
nothing calls this directly
no test coverage detected