lizmat Files=1345, Tests=117140, 232 wallclock secs (30.52 usr 8.89 sys + 3202.49 cusr 304.86 csys = 3546.76 CPU) 09:52
lizmat m: role a[|c] { dd c }; a[42].new # why is the role body run twice ? 13:16
camelia \(42)
\(42)
lizmat m: role a[|c] { dd c }; a.new # and not in this case ?
camelia \()
lizmat m: role a[|c] { dd c }; a[:foo].new # and not in this case either ? 13:17
camelia \(:foo)
lizmat bisectable6: role Foo[|c] { dd c }; Foo[42].new 13:24
bisectable6 lizmat, Will bisect the whole range automagically because no endpoints were provided, hang tight
lizmat, Output on all releases: gist.github.com/0a62bbed57cca477bb...ed50acf764 13:25
lizmat, Bisecting by output (old=2019.03.1 new=2019.07.1) because on both starting points the exit code is 0
lizmat, bisect log: gist.github.com/cb482563fcb22a3ff6...b5abebe666
lizmat, (2019-06-07) github.com/rakudo/rakudo/commit/41...e6dff208b3
lizmat, Output on all releases and bisected commits: gist.github.com/289c031afe5da8ec71...f27b06e634
Xliff lizmat: Any thoughts on this gist.github.com/Xliff/f4af67ed380d...975e4ed759 14:12
It was done a while ago, just now circling back to it.
That code will add the default value to USAGE output. 14:13
lizmat yeah, please make a PR so more people can eye it :-)
Xliff Sure thing.
lizmat and be properly credited when it's merged
afk for a few hours&
[Tux] Rakudo v2020.11-37-g1801a5aa3 (v6.d) on MoarVM 2020.11-25-gf3e9e356d
csv-ip5xs0.814 - 0.879
csv-ip5xs-207.790 - 7.835
csv-parser26.694 - 27.047
csv-test-xs-200.385 - 0.391
test7.833 - 7.854
test-t1.855 - 1.886
test-t --race0.844 - 0.879
test-t-2032.346 - 32.758
test-t-20 --race9.894 - 10.109
14:31
AlexDaniel` 6c: multi sub foo($x where /{say ‘hello’}4/) { say $/ }; multi sub foo($x where /{say ‘world’}9/) { say $/ }; foo 9 17:25
committable6 AlexDaniel`, ¦6c (49 commits): «hello␤hello␤world␤world␤「9」␤»
AlexDaniel` okay
Geth rakudo: eabdee4868 | (Elizabeth Mattijsen)++ | src/Perl6/bootstrap.c/BOOTSTRAP.nqp
Integrate iterator variable increment into conditional

So its value need only to be fetched once instead of twice. Not sure wheter this will actually affect compilation or runtime, but there's hoping...
17:57
Geth rakudo: 6852f40d2a | (Elizabeth Mattijsen)++ | 5 files
Make a lot of integers native in NQP code

They're about 4x as fast in NQP for loops and so on. Probably also should do this for all the places where integer values are used as flags.
19:32
lizmat looks like it is even more: 19:35
$ time nqp -e 'my $i := 0; while ++$i < 100000000 { }'
real0m1.715s
$ time nqp -e 'my int $i := 0; while ++$i < 100000000 { }' 19:36
real0m0.162s
afk for a few hours&