()
| 1565 | } |
| 1566 | |
| 1567 | public Statement labelledStatement() { |
| 1568 | String label = consume(IDENTIFIER).getText(); |
| 1569 | try { |
| 1570 | currentContext().addLabel(label); |
| 1571 | consume(COLON); |
| 1572 | Statement statement = statement(); |
| 1573 | statement.addLabel(label); |
| 1574 | return statement; |
| 1575 | } finally { |
| 1576 | currentContext().removeLabel(label); |
| 1577 | } |
| 1578 | } |
| 1579 | |
| 1580 | public DebuggerStatement debuggerStatement() { |
| 1581 | Token position = consume(DEBUGGER); |
no test coverage detected