That is of course a problem. Does that mean that it is an error in the grammar that
int `+ =7;
works but
int `+=7;
does not?
/ Martin Nilsson (har bott i google)
Previous text:
2003-04-05 19:18: Subject: `-=
The problem is that the sequence `-= isn't illegal. It consists of the two tokens `- and =. Thus Parser.Pike fails to parse e.g. this perfectly legal declaration correctly:
int `-=7;
/ Martin Stjernholm, Roxen IS