We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
php works fine
$a = 16; $a |= $a >> 1; // 24 // the same as // $a = $a | ($a >> 1);
zephir throws Zephir\ParseException with "Syntax error" message
Zephir\ParseException
var a; let a = 16; let a |= a >> 1;
Syntax error in /tmp/foo/foo/bar.zep on line 33 let a |= a >> 1; --------------^
works fine
var a; let a = 16; let a = a | (a >> 1);
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered:
It's not implemented in parser
Sorry, something went wrong.
This issue was moved to zephir-lang/php-zephir-parser#14
No branches or pull requests
php works fine
zephir throws
Zephir\ParseException
with "Syntax error" messageworks fine
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: