()
| 91 | } |
| 92 | |
| 93 | protected CompilationContext compilationContext() { |
| 94 | if (this.compilationContext == null) { |
| 95 | this.compilationContext = new DefaultCompilationContext(this.config); |
| 96 | } |
| 97 | if ( this.compilationContext.getBlockManager() == null ) { |
| 98 | this.compilationContext = new DefaultCompilationContext(this.compilationContext); |
| 99 | } |
| 100 | return this.compilationContext; |
| 101 | } |
| 102 | |
| 103 | |
| 104 | protected JSProgram compile(ProgramTree tree) { |
no test coverage detected