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

Method goTo

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

Generates the instruction to jump to the given label. @param label where to jump if the condition is true .

(final Label label)

Source from the content-addressed store, hash-verified

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.

Callers 10

compileMethod · 0.95
emitBoxReturnMethod · 0.80
emitMethod · 0.80
doEmitMethod · 0.80
emitMethod · 0.80
emitProtoMethod · 0.80
emitMethod · 0.80
doEmitMethod · 0.80
emitExprForIntsMethod · 0.80
emitThenForIntsMethod · 0.80

Calls 1

visitJumpInsnMethod · 0.45

Tested by

no test coverage detected