Generates the instruction to jump to the given label. @param label where to jump if the condition is true .
(final Label label)
| 1050 | * @param label where to jump if the condition is <tt>true</tt>. |
| 1051 | */ |
| 1052 | public void goTo(final Label label) { |
| 1053 | mv.visitJumpInsn(Opcodes.GOTO, label); |
| 1054 | } |
| 1055 | |
| 1056 | /** |
| 1057 | * Generates a RET instruction. |
no test coverage detected