🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org #rakulang). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | log inspection situation still under development | For MoarVM see #moarvm
Set by lizmat on 22 May 2021.
00:08 reportable6 left 00:10 reportable6 joined 01:05 londoed_ left, londoed_ joined
Geth rakudo: vrurg++ created pull request #4912:
Categorize exceptions thrown by role appliers
01:24
roast: vrurg++ created pull request #806:
Add a test for error thrown for ::?CLASS used in a role
01:28
01:38 japhb left 01:49 japhb joined 02:49 nativecallable6 left, bisectable6 left, evalable6 left, releasable6 left, coverable6 left, sourceable6 left, bloatable6 left, benchable6 left, linkable6 left, shareable6 left, greppable6 left, unicodable6 left, statisfiable6 left, notable6 left, committable6 left, tellable6 left, reportable6 left, quotable6 left, greppable6 joined, reportable6 joined, unicodable6 joined, releasable6 joined 02:50 committable6 joined, evalable6 joined, sourceable6 joined, nativecallable6 joined 02:51 coverable6 joined, statisfiable6 joined, notable6 joined, quotable6 joined, linkable6 joined, benchable6 joined, bisectable6 joined 02:52 shareable6 joined, tellable6 joined, bloatable6 joined 04:12 reportable6 left, coverable6 left, committable6 left, sourceable6 left, nativecallable6 left, tellable6 left, linkable6 left, evalable6 left, bisectable6 left, shareable6 left, unicodable6 left, statisfiable6 left, greppable6 left, bloatable6 left, benchable6 left, releasable6 left, quotable6 left, notable6 left 04:13 tellable6 joined, nativecallable6 joined, coverable6 joined, committable6 joined 04:14 reportable6 joined, bisectable6 joined, notable6 joined, evalable6 joined, bloatable6 joined, greppable6 joined, statisfiable6 joined, unicodable6 joined 04:15 benchable6 joined, linkable6 joined, quotable6 joined, sourceable6 joined, releasable6 joined, shareable6 joined 06:07 reportable6 left 06:10 reportable6 joined 07:40 statisfiable6 left, tellable6 left, releasable6 left, linkable6 left, reportable6 left, quotable6 left, benchable6 left, evalable6 left, committable6 left, coverable6 left, unicodable6 left, shareable6 left, nativecallable6 left, notable6 left, bloatable6 left, greppable6 left, bisectable6 left, sourceable6 left 07:41 quotable6 joined, committable6 joined, evalable6 joined, statisfiable6 joined, bisectable6 joined, coverable6 joined, notable6 joined, unicodable6 joined, sourceable6 joined 07:42 reportable6 joined, nativecallable6 joined, benchable6 joined, bloatable6 joined, shareable6 joined, releasable6 joined 07:43 linkable6 joined, greppable6 joined, tellable6 joined
lizmat Files=1353, Tests=117193, 318 wallclock secs (35.92 usr 9.64 sys + 4115.32 cusr 345.25 csys = 4506.13 CPU) 08:07
that's a *lot* more than yesterday... also in CPU
Files=1353, Tests=117193, 299 wallclock secs (41.39 usr 11.52 sys + 4116.20 cusr 347.13 csys = 4516.24 CPU) 08:13
MasterDuke is the 299 from yesterday, or another run today? 08:19
lizmat another run, on a cold machine right now 08:22
I suspect 83ea647498961e7154241d317daa0b90929d9597
as it may cause a lot more caching
nine I wonder if that commit is really a desired change in the first place. 08:25
lizmat well, it fixes an issue... :-) 08:26
nine Does it really?
MasterDuke fwiw, just ran a spectest on my machine and time is same as before that commit
nine The comment explaining PositionalBindFailover explicitly names "@-sigilled thing": github.com/rakudo/rakudo/blob/mast...ce.pm6#L14 08:30
List $a is not an @-sigilled argument
lizmat MasterDuke: can't run a proper comparison atm, machine is already no longer cold 08:33
Files=1353, Tests=117193, 305 wallclock secs (42.36 usr 12.43 sys + 4217.63 cusr 352.83 csys = 4625.25 CPU)
08:44 frost joined
nine I get Files=1353, Tests=117193, 113 wallclock secs (22.24 usr 4.03 sys + 3115.77 cusr 185.06 csys = 3327.10 CPU) on master 08:47
I get Files=1353, Tests=117193, 114 wallclock secs (22.58 usr 3.98 sys + 3114.81 cusr 185.15 csys = 3326.52 CPU) with 83ea647498961e7154241d317daa0b90929d9597 reverted 08:48
So very much within margin of error
08:48 linkable6 left 08:49 linkable6 joined
Geth rakudo: b84a6d2e65 | (Elizabeth Mattijsen)++ | src/Perl6/Actions.nqp
Add missing ":setting-only" parameter

Fixes #4911
09:06
09:06 linkable6 left 09:08 linkable6 joined
Geth roast: 870cad69a4 | (Elizabeth Mattijsen)++ | S10-packages/require-and-use.t
Add test for #4911
09:09
MasterDuke looks like there might be some more missing `:setting-only` 09:18
m: my $a = "lakjsdf"; my $sd = $a ~~ tr/"abc"/"123"/; say +$sd
camelia 1
MasterDuke m: my class StrDistance {}; my $a = "lakjsdf"; my $sd = $a ~~ tr/"abc"/"123"/; say +$sd
camelia Cannot resolve caller Numeric(StrDistance:D: ); none of these signatures matches:
(Mu:U \v: *%_)
in block <unit> at <tmp> line 1
MasterDuke and a bunch of them could probably instead be `find_single_symbol_in_setting()` 09:20
m: constant \f .= new; dd f 09:36
camelia Mu.new
MasterDuke m: my class Mu {}; constant \f .= new; dd f
camelia ===SORRY!=== Error while compiling <tmp>
An exception occurred while evaluating a constant
at <tmp>:1
Exception details:
No such method 'new' for invocant of type 'Mu'
in block at <tmp> line 1
09:37
lizmat fwiw, I feel this is getting close to DIHWIDT territory
MasterDuke sure, but they're easy fixes (and potentially a micro-optimization at the same time) 09:40
lizmat MasterDuke: go for it! 10:06
11:08 linkable6 left, coverable6 left, releasable6 left, nativecallable6 left, evalable6 left, quotable6 left, notable6 left, reportable6 left, greppable6 left, tellable6 left, committable6 left, bisectable6 left, benchable6 left, bloatable6 left, sourceable6 left, unicodable6 left, statisfiable6 left, shareable6 left, linkable6 joined, notable6 joined 11:09 evalable6 joined, releasable6 joined, sourceable6 joined, coverable6 joined, benchable6 joined, nativecallable6 joined
lizmat afk for a few hours& 11:09
11:09 quotable6 joined 11:10 shareable6 joined, committable6 joined, bloatable6 joined, unicodable6 joined, bisectable6 joined 11:11 reportable6 joined, statisfiable6 joined, greppable6 joined, tellable6 joined 11:30 [Coke] left 11:48 [Coke] joined 12:06 [Coke]_ joined 12:07 reportable6 left 12:08 [Coke] left 12:09 [Coke]_ is now known as [Coke] 12:10 reportable6 joined
[Tux] Rakudo v2022.04-25-gb84a6d2e6 (v6.d) on MoarVM 2022.04-1-g4e2eab056
csv-ip5xs0.752 - 0.758
csv-ip5xs-205.271 - 5.307
csv-parser3.632 - 3.904
csv-test-xs-200.391 - 0.407
test6.320 - 6.488
test-t1.466 - 1.523
test-t --race0.857 - 0.868
test-t-2020.285 - 20.561
test-t-20 --race7.110 - 7.167
12:16
13:38 discord-raku-bot left 13:39 discord-raku-bot joined 13:48 discord-raku-bot left, discord-raku-bot joined 14:08 discord-raku-bot left, discord-raku-bot joined 14:17 frost left 15:15 [Coke] left 15:16 [Coke] joined 16:38 sena_kun left, sena_kun joined 18:06 reportable6 left 18:09 reportable6 joined 18:37 sena_kun left 18:39 sena_kun joined 19:06 sena_kun left 19:07 sena_kun joined 19:54 timo left 20:21 timo joined 20:26 timo left 21:11 timo joined 23:40 londoed_ left, londoed_ joined 23:43 londoed_ left, londoed_ joined 23:47 londoed_ left, londoed_ joined