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

Method visitCode

src/jvm/clojure/asm/MethodVisitor.java:224–228  ·  view source on GitHub ↗

Starts the visit of the method's code, if any (i.e. non abstract method).

()

Source from the content-addressed store, hash-verified

222
223 /** Starts the visit of the method's code, if any (i.e. non abstract method). */
224 public void visitCode() {
225 if (mv != null) {
226 mv.visitCode();
227 }
228 }
229
230 /**
231 * Visits the current state of the local variables and operand stack elements. This method must(*)

Callers 2

emitStaticsMethod · 0.95
readMethodMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected