in reply to Re: Parse::RecDescent trouble
in thread Parse::RecDescent trouble
for me please? I particularly do not understand the '' construct (it will always match right?) neither do I understand how can you have several tokens in one rule without the | mark (you have '' then a skip pragma then key_value then /\n/ and then another skip pragma)line : '' # Skip blank lines. <skip:'[ \t]*'> # Don't treat newlines as whitespace +. key_value /\n/ <skip: $item[2]> { $item[3] }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Parse::RecDescent trouble
by ikegami (Patriarch) on Jan 12, 2007 at 22:26 UTC |