%token YYID
%%
expression : hier_id
        | method_call
          /* unary and secondary expression follows.
*/
        ;
method_call : expression '.' YYID '(' expression ')'
        ;
hier_id : YYID
        | hier_id '.' YYID
        ;

How to resolve the shift/reduce conflict? Please help.

-Soumitra.


                
__________________________________ 
Do you Yahoo!? 
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/ 


_______________________________________________
Help-bison@gnu.org http://lists.gnu.org/mailman/listinfo/help-bison

Reply via email to