MCPcopy Create free account
hub / github.com/dynjs/dynjs / compilationContext

Method compilationContext

src/main/java/org/dynjs/runtime/Compiler.java:93–101  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 2

parseMethod · 0.95
compileMethod · 0.95

Calls 1

getBlockManagerMethod · 0.65

Tested by

no test coverage detected