use of php.runtime.ext.SPLExtension in project jphp by jphp-compiler.
the class JvmCompilerCase method newScope.
protected CompileScope newScope() {
CompileScope compileScope = new CompileScope();
compileScope.setDebugMode(true);
compileScope.setLangMode(LangMode.DEFAULT);
compileScope.registerExtension(new CoreExtension());
compileScope.registerExtension(new SPLExtension());
compileScope.registerExtension(new CompilerExtension());
return compileScope;
}
Aggregations