(ExecutionContext context)
| 29 | } |
| 30 | |
| 31 | @Override |
| 32 | public Object interpret(ExecutionContext context) { |
| 33 | JSFunction compiledFn = ((ExecutionContext) context).getCompiler().compileFunction((ExecutionContext) context, |
| 34 | null, |
| 35 | new String[]{getIdentifier()}, |
| 36 | getBlock(), |
| 37 | context.isStrict()); |
| 38 | return(compiledFn); |
| 39 | } |
| 40 | } |
nothing calls this directly
no test coverage detected