Jonathan Worthington
Jonathan Worthington
I think the surprise is that an array only interpolates in a string if one has a postcircumfix after it, so one might expect to not get an error in...
BTW, it might (or might not...) be that the RakuAST-based compiler frontend does that check a bit later, so it'd be interesting to see if it exists in that. Either...
Did a latest build for other reasons, and yes, fixed in the RakuAST-based compiler: ``` $ RAKUDO_RAKUAST=1 raku -e 'say "@.x"' @.x ``` I did check it's not just because...
Allowing `chr` to have out-of-range codepoints is just asking for a whole nest of bugs (such as the one that triggered this, where you could overflow the integer to a...
@AlexDaniel Passing in such a thing probably indicates confusion, yes...
> do you think the check should happen in MoarVM for .uniname or in Rakudo? (or both) In this case probably just in Rakudo is enough; that way we can...
If bugs are to be mentioned in the docs, and the concern is about knowing to remove the mentions when they are fixed (or include a "fixed from Rakudo YYYY.MM"),...
> The thing is escape characters are not part of the Perl 6 language, they are part of the Unicode, and previously ASCII, definition Well, for ones like `\x6E` then...
It's called on the candidate, but roles are not closures (and ideally we'll find a way to make this spit out a warning in the new compiler frontend), so `$renamed`...
I presume on all `Iterable`s rather than simply on `list`? How would we choose to define it on items?