(value: Expression)
| 1289 | } |
| 1290 | |
| 1291 | set(value: Expression): BinaryOperatorExpr { |
| 1292 | return new BinaryOperatorExpr( |
| 1293 | BinaryOperator.Assign, |
| 1294 | this.receiver.prop(this.name), |
| 1295 | value, |
| 1296 | null, |
| 1297 | this.sourceSpan, |
| 1298 | ); |
| 1299 | } |
| 1300 | |
| 1301 | override clone(): ReadPropExpr { |
| 1302 | return new ReadPropExpr( |