(CompilationContext context, String identifier, String[] formalParameters, Statement body, boolean containedInStrictCode)
| 51 | } |
| 52 | |
| 53 | public JSFunction compileFunction(CompilationContext context, String identifier, String[] formalParameters, Statement body, boolean containedInStrictCode) { |
| 54 | return this.functionCompiler.compile(context, identifier, formalParameters, body, containedInStrictCode); |
| 55 | } |
| 56 | |
| 57 | public BasicBlock compileBasicBlock(CompilationContext context, String grist, Statement body, boolean strict) { |
| 58 | return this.basicBlockCompiler.compile(context, grist, body, strict); |