()
| 588 | expressions: ExpressionNode[] = []; |
| 589 | |
| 590 | getAssignmentError(): string | undefined { |
| 591 | for (let expr of this.expressions) { |
| 592 | let msg = expr.getAssignmentError(); |
| 593 | if (msg) { |
| 594 | return msg; |
| 595 | } |
| 596 | } |
| 597 | return undefined; |
| 598 | } |
| 599 | |
| 600 | getChildren(): RecursiveParseNodeArray { |
| 601 | return this.expressions; |
nothing calls this directly
no test coverage detected