dragonchild has asked for the wisdom of the Perl Monks concerning the following question:
database_ident: ident ; table_ident: database_ident '.' ident | ident ; column_ident: table_ident '.' ident | ident ; ident: IDENT | IDENT_QUOTED ;
Parse::Yapp is complaining about 2 reduce/reduce conflicts whenever I try to use column_ident. If I manually expand table_ident and database_ident in the dependent rules, the reduce/reduce conflicts go away. But, I don't want to do that because I anticipate extending those rules over time and don't want to have the rule in multiple places. Does anyone have any suggestions?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (OT) Yapp rules and resolving reduce/reduce errors
by pc88mxer (Vicar) on Apr 10, 2008 at 19:33 UTC | |
|
Re: (OT) Yapp rules and resolving reduce/reduce errors
by mr_mischief (Monsignor) on Apr 10, 2008 at 19:46 UTC | |
|
Re: (OT) Yapp rules and resolving reduce/reduce errors
by ikegami (Patriarch) on Apr 10, 2008 at 23:35 UTC | |
by dragonchild (Archbishop) on Apr 10, 2008 at 23:55 UTC | |
by ikegami (Patriarch) on Apr 11, 2008 at 00:08 UTC | |
|
Re: (OT) Yapp rules and resolving reduce/reduce errors
by casiano (Pilgrim) on Apr 11, 2008 at 13:04 UTC | |
|
Re: (OT) Yapp rules and resolving reduce/reduce errors
by casiano (Pilgrim) on Apr 12, 2008 at 09:39 UTC |