Vadim Belman
Vadim Belman
I have already updated the first comment with `MVM_SPESH_DISABLE`. Just have tried `MVM_JIT_DISABLE` and both of them at once. No change.
This is what I get with `--nooptimize` for MoarVM build. Unfortunately, when use Rakudo's Configure.pl with `--moar-option='--nooptimize'` it still injects `--optimize` somewhere along the way. Perhaps, would need to be...
``` (gdb) print *typeobj $3 = {header = {sc_forward_u = {forwarder = 0x4060000005e, sc = {sc_idx = 94, idx = 1030}, st = 0x4060000005e}, owner = 1, flags1 = 1...
I have a 100% reliable golf for the problem: ```raku use LibXML; my $html = ''; LibXML::Document.parse($html, :html).raku; ``` In my case it was triggered by `X::TypeCheck::Return` exception which invokes...
Here is output of `make check-local` which may also indicate a problem: [make-check-local.txt](https://github.com/kimchi-project/kimchi/files/5243088/make-check-local.txt)
This probably doesn't make sense to get fixed now because the problem is specific to the current compiler implementation and would like be not present in RakuAST. The error is...
Since I was playing possible causes of #4871 I checked out this issue. I have two conclusions: - The original problem is caused by the shared nature of `$/`. Two...
This is totally consistent behavior. `Golfy` gets punned when a method is invoked upon it. We cannot expect pun to care about the containerization status of the typeobject it is...
> You may find the current behavior understandable or even acceptable, but it is not consistent. Consistency means that the method behaves the same in the two cases (implicit pun...
Something more of a problem-solving, but two details I have missed earlier. Code: ```raku my &f := sub () { say "1" }; f(); &f := sub () { say...