Closed GoogleCodeExporter closed 9 years ago
I have encountered this issue too with version 603 on Windows 7, compiled with
MS Visual Studio.
Original comment by christop...@gmail.com
on 28 Feb 2014 at 2:10
I think the bug is somewhere in the function ParseStatement() in the processing
of a switch token.
I found a fix, not sure if is the correct way to do by replacing line 809:
ParseBlock(Parser, TRUE, OldMode != RunModeSkip);
by:
ParseBlock(Parser, TRUE, (OldMode != RunModeSkip) && (OldMode !=
RunModeReturn));
Original comment by christop...@gmail.com
on 28 Feb 2014 at 2:20
Thanks Christopher. I've applied your fix and it passes the regression tests.
Fixed in r606.
Original comment by zik.sale...@gmail.com
on 1 Mar 2014 at 4:25
Original issue reported on code.google.com by
m...@heilpern.com
on 27 Feb 2014 at 5:17