Well actually I didn't notice that one, but now that I have
looked at it I'm glad I wrote mine w/o looking at the Zend
one. The Zend one is a bit cluttered, but I can probably
use it to figure out the few remaining precedence issues.
It is interesting how flex start conditions were used to
deal wi
On Sun, 19 Jan 2003, James E. Flemer wrote:
> I am about 90% done writing a bison grammar for PHP, but
> will have to do some code reading to find the precedence of
> the class related operators. If someone knows where they
> should go, I'd appreciate a reply.
Why are you writing bison grammer w
The operator precedence table[1] is missing several
operators. The following operators are missing:
"->" class member operator
"::" scope resolution operator
"<>" not equals (same precedence as "!=" ?)
Well, I don't know the precedence, so someone with sufficient knowlegde
can please add these
The operator precedence table[1] is missing several
operators. The following operators are missing:
"->"class member operator
"::"scope resolution operator
"<>"not equals (same precedence as "!=" ?)
Also missing are a few casts: (bool), (boolean), (real),
(double), (integer). Though