(Node continueTarget)
| 88 | } |
| 89 | |
| 90 | public void setContinue(Node continueTarget) { |
| 91 | if (type != Token.LOOP) codeBug(); |
| 92 | if (continueTarget.getType() != Token.TARGET) codeBug(); |
| 93 | if (target2 != null) codeBug(); // only once |
| 94 | target2 = continueTarget; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Jumps are only used directly during code generation, and do not support this interface. |
no test coverage detected