MCPcopy Index your code
hub / github.com/clojure/clojure / ifNull

Method ifNull

src/jvm/clojure/asm/commons/GeneratorAdapter.java:1034–1036  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

doEmitMethod · 0.80

Calls 1

visitJumpInsnMethod · 0.45

Tested by

no test coverage detected