php-zephir-parser
php-zephir-parser copied to clipboard
The Zephir Parser delivered as a C extension for the PHP language.
I have a few issues with the syntax parsing in this case. It uses it's own parser so I would expect it to be better. Expressions should just work. I...
_From @mikachou on August 28, 2018 18:44_ For instance if my class name is RBF, then declare ```class RBF``` makes the compilator fails when i launch `zephir build`, but not...
_From @SliceOfLife on December 14, 2014 12:54_ The documentation says, that I can use a variable value as property name: ``` zep let someProperty = "myProperty"; let this->{someProperty} = 100;...
_From @mruz on January 24, 2014 11:43_ It would be nice to can use _list()_: ```zep var width, height; list(width, height) = getimagesize(value["tmp_name"]); ``` _Copied from original issue: phalcon/zephir#105_
The parser doesn't recognize type object declaration. Maybe it's not a native C type so I just want to point it out. But method argument hint type works as intended....
_From @tamaranga on February 1, 2014 9:39_ It's impossible to create class: ``` class HTML { } ``` and method: ``` class Test { public function HTML() {} } ```...
_From @steffengy on October 12, 2014 20:13_ ``` zephir namespace Debug; class ZephirDebug { public arr; public static function test() { let this->arr = new ZephirDebug(); let this->arr->arr = 1;...
I want to try compile my thing for PHP 7.x. I've installed zephir parser without problem but I couldn't find any compatible zephir lang version. I went back till 0.12...