[perl #126558] [BUG] Grammar parse failure should probably return Nil not Any

2017-08-28 Thread Ron Schmidt via RT
Request for test cases now roast issue: https://github.com/perl6/roast/issues/297 Planning to close this ticket soon if no objection.

[perl #126558] [BUG] Grammar parse failure should probably return Nil not Any

2017-08-21 Thread Ron Schmidt via RT
Noticed that RT #131919 is new and may apply to 6.d and would like to take a few days to review further.

[perl #126558] [BUG] Grammar parse failure should probably return Nil not Any

2017-08-21 Thread Ron Schmidt via RT
Hopefully it's just a doc issue but: https://docs.perl6.org/routine/parse still says: >> Returns a Match object on success, and Nil on failure.

[perl #126558] [BUG] Grammar parse failure should probably return Nil not Any

2017-08-21 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
Is this ticket relevant today? Note that we also have this: https://rt.perl.org/Ticket/Display.html?id=131919 On 2016-12-19 08:41:33, ronaldxs wrote: > On Tue, 03 Nov 2015 14:26:06 -0800, ronaldxs wrote: > > 18:07 mr_ron m: grammar G { token TOP { a+ } }; my Nil $x = > > G.parse("zz") > > 18:07