[antlr-interest] how to best break apart multiple assignments

Bruce Bauman bruce.bauman at andesaservices.com
Tue Mar 31 16:26:41 PDT 2009


In the sometimes bizarre dialect of Pascal I am using (MetaWare), the following is allowed:
 
Odd := Even := 0;
 
I need to split this into:
 
Odd := 0;
Even := 0;
 
Can somebody point me in the right direction?
 
Thanks.
 
-- Bruce


More information about the antlr-interest mailing list