Search in sources :

Example 1 with ZendExtension

use of org.develnext.jphp.zend.ext.ZendExtension in project jphp by jphp-compiler.

the class ZendJvmTestCase method newScope.

@Override
protected CompileScope newScope() {
    CompileScope scope = super.newScope();
    scope.registerExtension(new ZendExtension());
    return scope;
}
Also used : CompileScope(php.runtime.env.CompileScope) ZendExtension(org.develnext.jphp.zend.ext.ZendExtension)

Example 2 with ZendExtension

use of org.develnext.jphp.zend.ext.ZendExtension in project jphp by jphp-compiler.

the class GeneratorsTest method newScope.

@Override
protected CompileScope newScope() {
    CompileScope scope = super.newScope();
    scope.registerExtension(new ZendExtension());
    return scope;
}
Also used : CompileScope(php.runtime.env.CompileScope) ZendExtension(org.develnext.jphp.zend.ext.ZendExtension)

Example 3 with ZendExtension

use of org.develnext.jphp.zend.ext.ZendExtension in project jphp by jphp-compiler.

the class ArgUnpackTest method newScope.

@Override
protected CompileScope newScope() {
    CompileScope scope = super.newScope();
    scope.registerExtension(new ZendExtension());
    return scope;
}
Also used : CompileScope(php.runtime.env.CompileScope) ZendExtension(org.develnext.jphp.zend.ext.ZendExtension)

Aggregations

ZendExtension (org.develnext.jphp.zend.ext.ZendExtension)3 CompileScope (php.runtime.env.CompileScope)3