(value: Expression)
| 1343 | } |
| 1344 | |
| 1345 | set(value: Expression): BinaryOperatorExpr { |
| 1346 | return new BinaryOperatorExpr( |
| 1347 | BinaryOperator.Assign, |
| 1348 | this.receiver.key(this.index), |
| 1349 | value, |
| 1350 | null, |
| 1351 | this.sourceSpan, |
| 1352 | ); |
| 1353 | } |
| 1354 | |
| 1355 | override clone(): ReadKeyExpr { |
| 1356 | return new ReadKeyExpr( |