()
| 1584 | } |
| 1585 | |
| 1586 | public Statement iterationStatement() { |
| 1587 | try { |
| 1588 | pushContext(ContextType.ITERATION); |
| 1589 | |
| 1590 | switch (la()) { |
| 1591 | case DO: |
| 1592 | return doWhileStatement(); |
| 1593 | case WHILE: |
| 1594 | return whileStatement(); |
| 1595 | case FOR: |
| 1596 | return forStatement(); |
| 1597 | } |
| 1598 | |
| 1599 | throw new SyntaxError("unexpected token: " + laToken().getText()); |
| 1600 | } finally { |
| 1601 | popContext(); |
| 1602 | } |
| 1603 | } |
| 1604 | |
| 1605 | public DoWhileStatement doWhileStatement() { |
| 1606 | try { |
no test coverage detected