Small grammar problem

Hi,

I found a small error in the grammar. The terminals are supposed to be 
given in Perl regex syntax, but the whitespace terminal has unescaped 
slashes:

[\t\n\r ]+|[\t\n\r ]*((//.*|/\*(.|\n)*?\*/)[\t\n\r ]*)+

whereas I believe you want

[\t\n\r ]+|[\t\n\r ]*((\/\/.*|\/\*(.|\n)*?\*\/)[\t\n\r ]*)+

-- 
Robin Berjon - http://berjon.com/ - @robinberjon

Received on Monday, 29 October 2012 10:38:29 UTC