(ExecutionContext context)
| 24 | private VariableValues capturedValues; |
| 25 | |
| 26 | public JSFunction compile(ExecutionContext context) { |
| 27 | return new IRByteCodeCompiler(scope, getFileName(), isStrict()).compileFunction(context); |
| 28 | } |
| 29 | |
| 30 | private static class IRJSFunctionBox { |
| 31 | public int callCount = 0; |
nothing calls this directly
no test coverage detected