Method
constructor
(leftExpression: ExpressionNode, rightExpression: ExpressionNode)
Source from the content-addressed store, hash-verified
| 463 | rightExpression: ExpressionNode; |
| 464 | |
| 465 | constructor(leftExpression: ExpressionNode, rightExpression: ExpressionNode) { |
| 466 | super(leftExpression); |
| 467 | this.leftExpression = leftExpression; |
| 468 | this.rightExpression = rightExpression; |
| 469 | this.extend(rightExpression); |
| 470 | } |
| 471 | |
| 472 | getAssignmentError(): string | undefined { |
| 473 | return this.rightExpression.getAssignmentError(); |
Callers
nothing calls this directly
Tested by
no test coverage detected