(expression?: Expression, target?: Type)
| 1118 | expression?: Expression; |
| 1119 | |
| 1120 | constructor(expression?: Expression, target?: Type) { |
| 1121 | super(); |
| 1122 | if (expression) |
| 1123 | this.expression = castExpression(expression, target ?? expression.type); |
| 1124 | } |
| 1125 | |
| 1126 | override print(ctx: PrintContext) { |
| 1127 | if (this.expression) |
nothing calls this directly
no test coverage detected