Vadim Belman
Vadim Belman
Whichever way is chosen for `my` it would be confusing to somebody. The current approach is the least confusing path when it comes to array assignment. Just try this: ```raku...
@2colours You probably mean something different, not flattening. Just consider: ``` sub foo(*@a) { dd @a }; foo [1,2],3; my @a is List = [1,2],3; dd @a; dd @a.flat; ```...
> `(0,1,2,3,4,5).Seq` I think this must be the right one. It doesn't look right if `grep` would produce anything but what it is supplied with.
I have had to put a work on fix for 4531 on hold due to the above stated uncertainties. What seems to be the correct approach would require quite a...
I'm not so sure. Sounds kinda right, but to my view it's rather something an external utility like `p6doc` must do. Basically, the only two formats asking for a pager...
# Coredump details ``` Core was generated by `/home/vrurg/src/Raku/rakudo-debug/install/bin/raku libxml-raw.raku'. Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00007ff0df98d631 in MVM_spesh_log_return_type (tc=tc@entry=0x29d58fd2e00, value=0x29d5915df80) at src/spesh/log.c:198 198 MVM_ASSIGN_REF(tc, &(sl->common.header), entry->type.type, value->st->WHAT);...
The weird value in `value->st`, might be, under different circumstances of the application where I see the _symbol not found_ errors the most, the (or a) cause of the error.
I managed to catch the crash under GDB and get Raku stack trace out of it: ``` (gdb) call MVM_dump_backtrace(tc) at SETTING::src/core.c/Array.pm6:471 (/home/vrurg/src/Raku/rakudo-debug/install/share/perl6/runtime/CORE.c.setting.moarvm:AT-POS) from SETTING::src/core.c/array_slice.pm6:14 (/home/vrurg/src/Raku/rakudo-debug/install/share/perl6/runtime/CORE.c.setting.moarvm:postcircumfix:) from libxml-raw.raku:14 (:) from...
> A good rule of thumb is: if your commit message contains a bullet list, your commit is too large and needs to be split into commits for those individual...
> fwiw an unfortunate reality is that without precompilation of scripts (and thus the ability to use `$*DISTRIBUTION` in test files and bin scripts) this auto-choosing / loading logic won't...