(ExecutionContext context)
| 18 | } |
| 19 | |
| 20 | @Override |
| 21 | public Object interpret(ExecutionContext context) { |
| 22 | JSFunction compiledFn = ((ExecutionContext) context).getCompiler().compileFunction((ExecutionContext) context, |
| 23 | null, |
| 24 | new String[]{}, |
| 25 | getBlock(), |
| 26 | context.isStrict()); |
| 27 | return(compiledFn); |
| 28 | } |
| 29 | |
| 30 | } |
nothing calls this directly
no test coverage detected