Welcome to the main channel on the development of MoarVM, a virtual machine for NQP and Rakudo (moarvm.org). This channel is being logged for historical purposes.
Set by lizmat on 24 May 2021.
nine m: my uint $i; note(nqp::eqaddr($i.WHAT, uint)); note(nqp::istype($i.WHAT, uint)); note($i.HOW.name($i)); # the reason why those multi methods didn't match 07:32
camelia 5===SORRY!5=== Error while compiling <tmp>
Could not find nqp::eqaddr, did you forget 'use nqp;' ?
at <tmp>:1
------> 3uint $i; note(nqp::eqaddr($i.WHAT, uint)7⏏5); note(nqp::istype($i.WHAT, uint)); not
nine nqp: my uint $i; note(nqp::eqaddr($i.WHAT, uint)); note(nqp::istype($i.WHAT, uint)); note($i.HOW.name($i)); # the reason why those multi methods didn't match 07:33
camelia 0
0
BOOTInt
nine Oh, and the other reason: # Native argument. NQP doesn't do multiple dispatch over the native types, so if there's a type constraint we'll reject it. Also if we require an undefined object. 07:34
nine It was all fun and games. Until my uint $i = 0; broke with "This type cannot unbox to a native unsigned integer: P6opaque, Int" 14:09
MasterDuke doh 14:20
dogbert17 nine: is this your biggest rabbit hole yet? 14:58
nine Counting the individual small changes, probably. But in-process precomp was way worse 15:05
dogbert17 is fighting with AoC 2021 16:49
MasterDuke `This representation (NativeRef) cannot unbox to other types (for type IntLexRef)` ? 22:37
it points to github.com/rakudo/rakudo/blob/mast....pm6#L372, which i've changed to `$base := nqp::pow_I($radix, nqp::atpos($parse, 1), Num, Int);` because i now have nqp::radix* just returning the number of chars converted (still in a bigint though) instead of number of chars converted ** radix 22:39
happening during json parsing while "Preparing installation" 22:40