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

Method execute

src/jvm/clojure/asm/CurrentFrame.java:48–55  ·  view source on GitHub ↗

Sets this CurrentFrame to the input stack map frame of the next "current" instruction, i.e. the instruction just after the given one. It is assumed that the value of this object when this method is called is the stack map frame status just before the given instruction is executed.

(
      final int opcode, final int arg, final Symbol symbolArg, final SymbolTable symbolTable)

Source from the content-addressed store, hash-verified

46 * method is called is the stack map frame status just before the given instruction is executed.
47 */
48 @Override
49 void execute(
50 final int opcode, final int arg, final Symbol symbolArg, final SymbolTable symbolTable) {
51 super.execute(opcode, arg, symbolArg, symbolTable);
52 Frame successor = new Frame(null);
53 merge(symbolTable, successor, 0);
54 copyFrom(successor);
55 }
56}

Callers

nothing calls this directly

Calls 2

mergeMethod · 0.80
copyFromMethod · 0.80

Tested by

no test coverage detected