00:26 committable6 left, evalable6 left, benchable6 left, reportable6 left, coverable6 left, releasable6 left, tellable6 left, quotable6 left, shareable6 left, greppable6 left, statisfiable6 left, unicodable6 left, squashable6 left, notable6 left, nativecallable6 left, bloatable6 left, bisectable6 left, bloatable6 joined, reportable6 joined 00:27 squashable6 joined, benchable6 joined, quotable6 joined, evalable6 joined, notable6 joined 00:28 releasable6 joined, unicodable6 joined 00:29 greppable6 joined 00:30 shareable6 joined, committable6 joined, coverable6 joined, nativecallable6 joined, statisfiable6 joined 00:31 tellable6 joined 00:44 ggoebel joined 01:20 lucasb left 04:16 ZzZombo_ joined 04:20 ZzZombo left, ZzZombo_ is now known as ZzZombo 04:35 ZzZombo_ joined 04:38 ZzZombo left, ZzZombo_ is now known as ZzZombo
[Tux] Rakudo version 2019.07.1-398-gf3dda96a8 - MoarVM version 2019.07.1-270-g37f1f0bef
csv-ip5xs0.760 - 0.899
csv-ip5xs-206.520 - 6.735
csv-parser23.196 - 23.875
csv-test-xs-200.420 - 0.435
test7.395 - 7.870
test-t1.771 - 2.054
test-t --race0.864 - 1.435
test-t-2029.428 - 32.624
test-t-20 --race9.800 - 9.829
07:13
08:58 [Tux] left 09:15 [Tux] joined 09:54 pmurias joined 10:13 pmurias left 10:18 patrickb joined 10:36 [Tux] left 10:45 pmurias joined 10:46 [Tux] joined 11:20 pmurias left 11:49 pmurias joined 12:10 ggoebel left 12:33 lucasb joined 12:54 lizmat left
tbrowder hi, i am starting to use declarator blocks in my code so p6doc can show the comments, but at the moment such comments are extracted and normalized, which is very ugly. 12:58
there is an issue to allow some formatting but it actually seems to be an easy fix to just eliminate the call to normalize_text so the author's formatting remains. 13:00
i will try that today and, if it works as i hope it will, i will submit the PR if no one objects. 13:02
13:04 Guest13443 joined 13:35 Xliff_ joined 13:42 patrickb left 13:44 patrickb joined
Kaiepi i might take a look at some of the nativecall blockers once i fix a gc bug related to some refactoring in moarvm i did last week 14:15
14:27 ggoebel joined
Guest13443 Kaiepi: a GC fix related to async udp sockets went in yesterday 14:29
Kaiepi ah, i was too late for that then
Geth rakudo: tbrowder++ created pull request #3239:
Improve LTA messages for incorrect declarator blocks
14:57
14:58 pmurias left 15:00 pmurias joined 15:10 pmurias left 15:17 benjif joined
Kaiepi m: enum Foo <foo bar baz>; augment grammar Foo { method ^name(--> Str:D) { 'um' } }; say Foo 15:45
camelia 5===SORRY!5=== Error while compiling <tmp>
augment not allowed without 'use MONKEY-TYPING'
at <tmp>:1
------> 3m Foo <foo bar baz>; augment grammar Foo7⏏5 { method ^name(--> Str:D) { 'um' } }; s
expecting any of:
generi…
Kaiepi m: use MONKEY-TYPING; enum Foo <foo bar baz>; augment grammar Foo { method ^name(--> Str:D) { 'um' } }; say Foo
camelia Potential difficulties:
Useless declaration of a has-scoped method in grammar (did you mean 'my method name'?)
at <tmp>:1
------> 3o bar baz>; augment grammar Foo { method7⏏5 ^name(--> Str:D) { 'um' } }; say Foo
(Foo)
Kaiepi m: use MONKEY-TYPING; enum Foo <foo bar baz>; augment grammar Foo { method name(--> Str:D) { 'um' } }; say Foo.name
camelia um
Kaiepi m: use MONKEY-TYPING; class Foo { }; augment class Foo { method ^name(--> Str:D) { "Not Foo" } }; say Foo 15:46
camelia (Foo)
Kaiepi m: use MONKEY-TYPING; class Foo { }; augment class Foo { method ^name(--> Str:D) { "Not Foo" } }; say Foo.^name
camelia Too many positionals passed; expected 1 argument but got 2
in method name at <tmp> line 1
in block <unit> at <tmp> line 1
15:46 benjif left
Kaiepi m: use MONKEY-TYPING; class Foo { }; augment class Foo { method ^name($ --> Str:D) { "Not Foo" } }; say Foo 15:46
camelia (Foo)
Kaiepi m: use MONKEY-TYPING; class Foo { }; augment class Foo { method ^name($ --> Str:D) { "Not Foo" } }; say Foo.^name
camelia Not Foo
15:46 benjif joined
Kaiepi there's some type of bug in this, but what should even happen when you try to run it? fpaste.scsys.co.uk/586535?tx=on 15:50
since it's augmenting with the wrong HOW
jnthn m: use MONKEY-TYPING; class Foo { }; augment class Foo { method ^shortname($ --> Str:D) { "Not Foo" } }; say Foo 16:11
camelia (Not Foo)
jnthn No bug, just wrong method :) 16:12
AlexDaniel squashable6: status
squashable6 AlexDaniel, ⚠🍕 Next SQUASHathon in ≈11 hours (2019-10-19 UTC-12⌁UTC+20). See github.com/rakudo/rakudo/wiki/Mont...Squash-Day
Kaiepi ah 16:38
wait, jnthn, that wasn't the code i was thinking was buggy 16:52
it was what i was trying earlier, this fpaste.scsys.co.uk/586535?tx=on
Xliff_ m: use MONKEY-TYPING; class Foo { }; augment class Foo { method ^name($ --> Str:D) { "Not Foo" }; }; say Foo.^name; 17:11
camelia Not Foo
Kaiepi m: use MONKEY-TYPING; enum Foo <foo bar baz>; augment grammar Foo { method ^shortname($ --> Str:D) { 'Not Foo' } }; say Foo 17:15
camelia Potential difficulties:
Useless declaration of a has-scoped method in grammar (did you mean 'my method shortname'?)
at <tmp>:1
------> 3o bar baz>; augment grammar Foo { method7⏏5 ^shortname($ --> Str:D) { 'Not Foo' } }
(Foo)
17:20 benjif left 17:21 benjif1 joined, benjif1 left, benjif1 joined 18:00 benjif1 left, benji joined, benji is now known as benjif 18:07 lizmat joined 18:59 patrickb left 19:11 MasterDuke joined
lizmat hmmm... where are command line parameters such as -I -M -e -n -p documented in docs? 19:21
Geth rakudo/master: 5 commits pushed by (Naoum Hankache)++, (Vadim Belman)++ 19:27
MasterDuke lizmat: docs.perl6.org/language/5to6-nutsh...line_flags is the best place that i see 19:30
place where they're best explained, not the best place i think they should be explained 19:31
discord6 <Aearnus> I submit a bug report for that issue I was talking about the other day 19:32
<Aearnus> github.com/rakudo/rakudo/issues/3240
lizmat MasterDuke++ # care to make an issue for that 19:34
?
19:36 lizmat left
MasterDuke sure. i thought there was a "running your program" or something like that section that had them before, but i can't find what i'm remembering 19:37
19:37 pmurias joined
MasterDuke oh. github.com/perl6/doc/issues/1668 19:40
19:42 ufobat_ joined 19:45 ufobat left 19:57 softmoth joined 20:08 vrurg left 20:15 vrurg joined
Geth rakudo: tbrowder++ created pull request #3241:
Improve LTA messages for incorrect declarator blocks
20:17
nqp/truffle: caf08863f3 | (Paweł Murias)++ | 2 files
[truffle] Implement nqp::settypehllrole
20:37
pmurias MasterDuke: I'm back to working on nqp-truffle :)
20:43 pmurias left 20:44 pmurias joined 21:59 benjif left, benjif joined 22:07 releasable6 left 22:08 lizmat joined, squashable6 left 22:12 releasable6 joined, squashable6 joined 22:18 pmurias left
Geth nqp: c4234376ba | (Aleks-Daniel Jakimenko-Aleksejev)++ | tools/templates/MOAR_REVISION
[MoarVM Bump] Brings 11 commits

MoarVM bump brought: github.com/MoarVM/MoarVM/compare/2...g990a2b683 990a2b683 Merge pull request #1193 from patzim/perm-check-fix eebe39b51 Merge pull request #1197 from dogbert17/libuv-v-133 0f05efbb7 Update to libuv version 1.33.0 91d53ae7f Revert "Revert "exprjit sp_p6oget_bi"" ... (7 more lines)
22:19
rakudo: 2179a8f242 | (Aleks-Daniel Jakimenko-Aleksejev)++ | tools/templates/NQP_REVISION
[NQP Bump] c4234376b [MoarVM Bump] Brings 11 c […]

NQP bump brought: github.com/perl6/nqp/compare/2019....gc4234376b
MasterDuke pmurias: nice. i see a lot of graalvm in the news and i hope to do some more after i finish up this libtommath work 22:24
tellable6 MasterDuke, I'll pass your message to pmurias
Geth rakudo/master: 8 commits pushed by (Tom Browder)++ 22:44
lizmat hmmm... after the NQP bump, it looks like some older bugs have returned 22:47
tellable6 2019-10-17T20:09:29Z #perl6-dev <rba> lizmat Liz, too many things to do at the same time here. Will start preparing raku hosting step-by-step within the next 3-4 days. I know this is not a huge amount of things to do, yet I just need to balance work/life/raku.
lizmat t/spec/S32-temporal/DateTime.t t/spec/S32-list/combinations.t fail 22:48
sleep& 22:49
23:15 Xliff_ left
Geth roast: afbc6383ad | (Vadim Belman)++ | 2 files
Add test for file change events.

Followup to rakudo/rakudo#3100
23:29
roast: 18c277fac3 | (Vadim Belman)++ | S16-io/watch.t
Sync writer/reader with a Promise
roast: cc1e5ccf30 | (Vadim Belman)++ (committed using GitHub Web editor) | 2 files
Merge pull request #576 from vrurg/rakudo_3100

Add test for file change events.
This is ok with merge of moarvm/moarvm#1197
nqp: c7988b3e89 | (Aleks-Daniel Jakimenko-Aleksejev)++ | tools/templates/MOAR_REVISION
[MoarVM Bump] Brings 2 commits

MoarVM bump brought: github.com/MoarVM/MoarVM/compare/2...g0aa43a983 0aa43a983 Revert "[JIT] Syntactically distinguish let keyword variants" 6edb176a3 Revert "Revert "Revert "exprjit sp_p6oget_bi"""
23:46
rakudo: 75d705f193 | (Aleks-Daniel Jakimenko-Aleksejev)++ | tools/templates/NQP_REVISION
[NQP Bump] c7988b3e8 [MoarVM Bump] Brings 2 co […]

NQP bump brought: github.com/perl6/nqp/compare/2019....gc7988b3e8
vrurg I wonder if there is a bug in Actions.nqp begin_time_lexical_fixup. When looking for a nested Block it ignores the fact nested blocks could (and most like will) reside in a QAST::Sttmts. Don't I miss anything here? 23:47
23:52 lucasb left