ta da!

e returns [int v]
  : e '*'^ b=e {$v *= $b.v;}
  | e '+'^ b=e {$v += $b.v;}
  | INT {$v = $INT.int;}
  ;

works. :)  builds a tree and computes v.  $v automatically set for 
left-recursive call. generates this more or less:

e returns [int v] : =e_[0] {$v=$e_.v;} ;

e_[int _p] returns [int v]
    :  e_primary  {root_0=$e_primary.tree;} {$v=$e_primary.v;}
        ( ( {_p <= 4}?=> '*' ^b= e {$v *= $b.v;}
          | {_p <= 3}?=> '+' ^b= e {$v += $b.v;}
          )
        )*
    ;

e_primary returns [int v]
    : INT {$v = $INT.int;}
    ;

Ter

List: http://www.antlr.org/mailman/listinfo/antlr-interest
Unsubscribe: 
http://www.antlr.org/mailman/options/antlr-interest/your-email-address

-- 
You received this message because you are subscribed to the Google Groups 
"il-antlr-interest" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/il-antlr-interest?hl=en.

Reply via email to