MCPcopy Create free account
hub / github.com/dynjs/dynjs / execute

Method execute

src/main/java/org/dynjs/ir/IRJSProgram.java:45–51  ·  view source on GitHub ↗
(ExecutionContext context)

Source from the content-addressed store, hash-verified

43 }
44
45 @Override
46 public Completion execute(ExecutionContext context) {
47 // Allocate space for variables of this function and establish link to captured ones.
48 context.allocVars(scope.getLocalVariableSize(), null);
49
50 return Completion.createNormal(Interpreter.execute(context, scope, instructions));
51 }
52
53 @Override
54 public BlockManager getBlockManager() {

Callers

nothing calls this directly

Calls 4

createNormalMethod · 0.95
executeMethod · 0.95
allocVarsMethod · 0.80
getLocalVariableSizeMethod · 0.80

Tested by

no test coverage detected