Generates the instruction to jump to the given label if the top stack value is null. @param label where to jump if the condition is true .
(final Label label)
| 1032 | * @param label where to jump if the condition is <tt>true</tt>. |
| 1033 | */ |
| 1034 | public void ifNull(final Label label) { |
| 1035 | mv.visitJumpInsn(Opcodes.IFNULL, label); |
| 1036 | } |
| 1037 | |
| 1038 | /** |
| 1039 | * Generates the instruction to jump to the given label if the top stack value is not null. |