(ExecutionContext context)
| 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() { |
nothing calls this directly
no test coverage detected