I think my pull request has reached the point where it should work on
others' machines, too ;-)
Please try it out:
https://github.com/MoarVM/MoarVM/pull/528/files?diff=split
On Mon, 06 Feb 2017 04:04:16 -0800, consult...@jnthn.net wrote:
> Discovered this after some $dayjob code got busted by updating Rakudo.
> After bisecting, I got it down to this commit:
>
> https://github.com/rakudo/rakudo/commit/fd8df7f2ad509689a64b8825e1c4bb622cf7486f
>
> And from that thankful
On Sat, 09 Jan 2016 05:05:06 -0800, lucasbuchala wrote:
> An itemized empty list is getting ".perl"-stringified as "$()", which
> I think is wrong since $() means some idiom using "$/". The fix should
> be just to make it stringify as "$( )" (with a space in the middle) or
> maybe "().item" for cla
The test in question is this:
is(("acdbcdbe" ~~ rx:P5/a(?:b|c|d){6,7}?(.)/ && $0), "e", 're_tests 617/1
(801)');
It turns out that the problem is not related to P5, but happens with P6Regex as
well:
r: say ("ddd" ~~ / [ x | d ] **? 3 /)
rakudo-jvm fb4f16: OUTPUT«「d」»
..rakudo-moar 637
FWIW that hangs on FreeBSD as well (maybe not too much a surprise, given the
relationship of the OSes).