🦋 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: ... | Logs available at irclogs.raku.org/raku-dev/live.html | For MoarVM see #moarvm Set by lizmat on 8 June 2022. |
|||
00:00
reportable6 left
00:03
reportable6 joined
01:03
linkable6 left,
evalable6 left,
linkable6 joined,
evalable6 joined
02:06
notable6 left,
reportable6 left,
tellable6 left,
releasable6 left,
linkable6 left,
squashable6 left,
benchable6 left,
bisectable6 left,
bloatable6 left,
statisfiable6 left,
sourceable6 left,
nativecallable6 left,
coverable6 left,
evalable6 left,
unicodable6 left,
greppable6 left,
committable6 left,
quotable6 left,
shareable6 left,
bloatable6 joined,
quotable6 joined
02:07
releasable6 joined,
unicodable6 joined,
evalable6 joined
02:08
tellable6 joined,
committable6 joined,
linkable6 joined,
greppable6 joined,
reportable6 joined,
coverable6 joined,
sourceable6 joined,
benchable6 joined,
nativecallable6 joined,
notable6 joined,
bisectable6 joined,
squashable6 joined
02:09
shareable6 joined,
statisfiable6 joined
02:24
lucs_ is now known as lucs
03:13
Kaiepi left
|
|||
Geth | rakudo: vrurg++ created pull request #5142: Some additional work on RakuAST compiling |
04:09 | |
05:33
Kaiepi joined
06:00
reportable6 left
06:02
reportable6 joined
07:02
coverable6 left,
releasable6 left,
notable6 left,
squashable6 left,
tellable6 left,
shareable6 left,
linkable6 left,
evalable6 left,
bloatable6 left,
committable6 left,
benchable6 left,
statisfiable6 left,
quotable6 left,
nativecallable6 left,
bisectable6 left,
greppable6 left,
unicodable6 left,
sourceable6 left,
reportable6 left,
coverable6 joined,
committable6 joined,
bisectable6 joined
07:03
shareable6 joined,
evalable6 joined,
quotable6 joined,
unicodable6 joined,
squashable6 joined,
bloatable6 joined,
reportable6 joined,
statisfiable6 joined,
tellable6 joined
07:04
releasable6 joined,
linkable6 joined,
benchable6 joined,
notable6 joined
07:05
sourceable6 joined,
greppable6 joined,
nativecallable6 joined
09:21
sena_kun joined
10:20
Kaiepi left
10:21
sena_kun left
10:32
sena_kun joined
10:33
sena_kun left
11:23
Kaiepi joined
12:00
reportable6 left
12:02
reportable6 joined
13:02
linkable6 left,
evalable6 left
13:03
linkable6 joined,
evalable6 joined
|
|||
Geth | tap-harness6/dev: 23 commits pushed by (Leon Timmermans)++ review: github.com/Raku/tap-harness6/compa...7110047d15 |
13:04 | |
lizmat | bisectable6: old=2021.12 dd (^10).pick(**) | 13:39 | |
bisectable6 | lizmat, Bisecting by output (old=2021.12 new=d52342e) because on both starting points the exit code is 0 | ||
lizmat, bisect log: gist.github.com/c5e5225954897a98d6...31aa9bc28b | 13:40 | ||
lizmat, (2021-12-23) github.com/rakudo/rakudo/commit/92...d7481afa47 | |||
13:43
Kaiepi left
13:44
Kaiepi joined
14:18
Kaipei joined
|
|||
Geth | tap-harness6/master: 26 commits pushed by (Leon Timmermans)++ review: github.com/Raku/tap-harness6/compa...5c6e96d0c3 |
14:20 | |
14:21
Kaiepi left
|
|||
Geth | tap-harness6: 2410f8fe8d | (Leon Timmermans)++ | 3 files 0.3.10 |
14:25 | |
14:28
Kaiepi joined
14:29
Kaipei left
15:23
Xliff joined
15:44
Xliff left
16:50
Kaipei joined
16:52
Kaiepi left
17:04
Kaipei left
17:17
vrurg_ joined,
vrurg left
17:24
RakuIRCLogger left,
RakuIRCLogger joined
17:45
RakuIRCLogger left,
RakuIRCLogger joined
17:51
Kaiepi joined
18:00
reportable6 left,
reportable6 joined
18:08
sena_kun joined
18:29
NemokoschKiwi joined
|
|||
NemokoschKiwi | bisectable6: grammar Demo2 { token TOP { <to2> }; token to2 { \d+ }; }; my $var2 = Demo2.parse("111"); grammar Demo { token TOP { <to> }; token to { \d+ }; }; my $var = Demo.parse("111"); say $var<to>, $var2<to2>; say $var<to> eqv $var2<to2> | 18:30 | |
bisectable6 | NemokoschKiwi, Will bisect the whole range automagically because no endpoints were provided, hang tight | ||
NemokoschKiwi, Output on all releases: gist.github.com/c35d9be84594f3400c...24273d9261 | |||
NemokoschKiwi, Bisecting by output (old=2017.03 new=2017.04.3) because on both starting points the exit code is 0 | |||
NemokoschKiwi, bisect log: gist.github.com/46a4283e49a85d72c4...d9f4a0584e | |||
NemokoschKiwi, bisect log: gist.github.com/659f20a7176ad42810...032681268d | |||
NemokoschKiwi, bisect log: gist.github.com/a9beb856d2a647f0a0...0a5a4ef398 | |||
NemokoschKiwi, Output on all releases and bisected commits: gist.github.com/92c2268616df1d093e...65a0a840f4 | |||
NemokoschKiwi | bisectable6: grammar Demo2 { token TOP { <pos2> }; token pos2 { \d+ }; }; my $var2 = Demo2.parse("111"); grammar Demo { token TOP { <pos> }; token pos { \d+ }; }; my $var = Demo.parse("111"); say $var<pos>, $var2<pos2>; say $var<pos> eqv $var2<pos2> | 18:51 | |
bisectable6 | NemokoschKiwi, Will bisect the whole range automagically because no endpoints were provided, hang tight | ||
NemokoschKiwi, Output on all releases: gist.github.com/ec189cd469c7ca7748...05bf5730f3 | 18:52 | ||
NemokoschKiwi, bisect log: gist.github.com/4b2f72b08ebcf26afd...1fe3e443c6 | |||
NemokoschKiwi, bisect log: gist.github.com/23393fc4b9e5d479d4...cdab5ed7fc | |||
NemokoschKiwi, Output on all releases and bisected commits: gist.github.com/a396f09b0bd49751e2...70d93292be | |||
19:17
NemokoschKiwi left
19:47
Kaiepi left
20:10
Geth left,
Geth joined
20:11
Geth left,
Geth joined
|
|||
MasterDuke | ugexe, nine, lizmat: if i add a binary sha1 op, how/where should i test it for module loading? | 20:49 | |
lizmat | good question: src/core.c/CompUnit/Repository/FileSystem.pm6, method id seems like a good place to start looking | 20:53 | |
it could also be hidden in src/Per6 somewhere | 20:54 | ||
looks like it's not | 20:55 | ||
MasterDuke | well, i can easily find where we call nqp::sha1. what i'm not sure of is which ones could/should be replaced with the binary sha1 op | ||
but yeah src/core.c/CompUnit/Repository/FileSystem.pm6 does look like a good place to start | 20:56 | ||
lizmat | in there is a recursive check for the all of the files living in that directory | 20:57 | |
where each file's contents is being sha'd | |||
MasterDuke: you might want to look for DIR-RECURSE :-) | 21:19 | ||
22:05
kjp left
|
|||
Nemokosch | Will the current Actions.nqp not be used with the RakuAST frontend? | 22:07 | |
22:16
kjp joined
23:18
NemokoschKiwi joined
23:23
NemokoschKiwi left
23:25
sena_kun left
|
|||
ugexe | Remember CURs work with distribution interfaces, which may or may not be exposing PIO (so if you do a binary sha1 it should be on blob/buf) | 23:37 | |
23:56
NemokoschKiwi joined
23:57
NemokoschKiwi left
|