🦋 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.
Geth App-MoarVM-Debug: slid1amo2n3e4++ created pull request #19:
Fixes mangled printing when hitting a breakpoint without a stacktrace.
18:15
App-MoarVM-Debug/main: 9b0bea317f | slid1amo2n3e4++ (committed using GitHub Web editor) | lib/App/MoarVM/Debug/Breakpoints.rakumod
Fixes mangled printing when hitting a breakpoint without a stacktrace. (#19)
18:31
App-MoarVM-Debug: slid1amo2n3e4++ created pull request #20:
Add listing breakpoints and clearing them by ID
20:26
patrickb I'm curious, is ^ a second persona of timo? 20:41
[Coke] given that they speak to each other on the PR, I doubt it? 21:03
patrickb Interesting. I'd really like to get to know them. It seems they, timo and I share a common interest in the debugger. I'll go ask! 21:27
ab5tract so I'm *this* close to having a revision-gated resolution to the `&infix:<!=>` + junctions conundrum 22:15
haven't tried to revision gate the `METAOP_NEGATE` side of things, but that one was super simple to address 22:16
Instead of `-> |c { c.elems > 1 ?? !op.(|c) !! True }` ...
use ` -> |c { c.elems > 1 ?? op.(op.(|c), False) !! True }` instead 22:17