(Node finallyTarget)
| 64 | } |
| 65 | |
| 66 | public void setFinally(Node finallyTarget) { |
| 67 | if (type != Token.TRY) codeBug(); |
| 68 | if (finallyTarget.getType() != Token.TARGET) codeBug(); |
| 69 | if (target2 != null) codeBug(); // only once |
| 70 | target2 = finallyTarget; |
| 71 | } |
| 72 | |
| 73 | public Jump getLoop() { |
| 74 | if (type != Token.LABEL) codeBug(); |
no test coverage detected