🦋 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.
vrurg lizmat: that was due to overlooked `my constant RakuAST`. There is no hll symbol 'RakuAST' anymore, it's simply not needed. 01:51
Geth rakudo/main: 430d6d29e4 | (Vadim Belman)++ | src/core.e/Formatter.pm6
Remove unneeded overwriting of RakuAST by Formatter

It was a left-over from the previous approach to masking the symbol to the user land without `use experimental :rakuast`.
01:56
vrurg lizmat: ^^^ :) 01:57
Geth rakudo/main: 4 commits pushed by (Vadim Belman)++ 01:59
vrurg . 14:26
lizmat vrurg: thanks for the fix :-) 15:00
vrurg lizmat: welcome. ;) Though it scared me at first because it looked very... er... mysterious! 15:01
lizmat yeah... :-)
Xliff Fix? What fix? 15:05
vrurg Xliff: ssshhhhh! Quiet, please! ;) 15:11
Xliff vrurg: Did you make a mistake? *gasp* ;)
vrurg Just a merge with conflicts went somewhat sideways. Happens when same file change simultaneously. 15:12
*changed
Geth rakudo/main: d4598e4757 | (Elizabeth Mattijsen)++ | src/core.c/RakuAST/Deparse.pm6
Make sure that most deparsing features can be customized

Instead of having a method return an absolute string, return an attribute of the Deparse object, that is initialized to the same value.
No functional changes, just more flexibility towards the future. ... (7 more lines)
16:43
Nemokosch bisectable6: class Foo { has int @.items is rw; method bug { @.items = () }; }; Foo.new(items => (1, 2)).bug 21:30
bisectable6 Nemokosch, Will bisect the whole range automagically because no endpoints were provided, hang tight
Nemokosch, Output on all releases: gist.github.com/7b8c4fc0ec7690be2a...d51ea29f35
Nemokosch, Bisecting by output (old=2016.09 new=2016.10) because on both starting points the exit code is 1
Nemokosch, bisect log: gist.github.com/ff36a8a86e6abea1ea...7d8483c200 21:31
Nemokosch, (2016-10-06) github.com/rakudo/rakudo/commit/60...1eaa627ca6
Nemokosch, Output on all releases and bisected commits: gist.github.com/ebf36e71416f186610...a323bee8ef
Nemokosch The way properties are implemented is anything but relieving. 22:05
Honestly, I don't know where this stuff is implemented - perhaps in the metamodel 22:07
apparently, when you write `has @.lol`, you create a `@!lol` attribute - so far so good, right? 22:08
MasterDuke BUILDPLAN i believe
Nemokosch but nothing remotely like `@.lol` is created, to the extent that 1. you can write any sigil at occurances in the code and that will never be a lookup error
2. `@.lol` is apparently not even the same as `self.lol` and the latter does the right thing 22:09
By the behavior, I would guess the former actually does `@(self.lol)`
MasterDuke: thank you for the hint - I couldn't find it yet but at least I'm now aware that there is something like this :) 22:19
also, I'm more and more convinced that @.lol just does @(self.lol) which is acceptable most of the time but not for native arrays 22:20
MasterDuke you might be right, the output of --target=ast looks like that is happening 22:23
Nemokosch I kinda hope it's somewhere in Attribute.pm6 because I'm fairly clueless at this point 22:38
got it - World.nqp 22:56
generate_accessor it must be