Patrick Böker
Patrick Böker
The following error only appears with the code spread across multiple files. If one inlines `CITestSetManager.rakumod` into `test.raku` it disappears. It's reproducible. ``` Select $opt = Red::AST::Select.new(of => DB::CITestSet, fields...
Here's what we are currently usually doing: *After* each release, someone from the docs team sets up an issue with all changes in the release that need to be documented....
In general, if a &return was called in a routine, we don't want any other code in exit handlers to interfere with that return from returning. It's possible for exit...
When a LEAVE phaser is run during an unwind, there is no valid return_address set in the LEAVE phasers caller frame. (It return_address is actually set to cur_op which is...
``` sub s() { LEAVE return 5; return 7; } s() ``` gives > Attempt to return outside of any Routine > in sub s at leave-bug.raku line 2 >...
Fixes https://github.com/rakudo/rakudo/issues/4521. When using &return an exception is thrown and the return value saved in `tc->last_payload`. LEAVE phasers interupt the stack unwind and call the LEAVE code block. Code in...
Discussed in https://github.com/Raku/problem-solving/issues/417 Depends on these three PRs: - https://github.com/MoarVM/MoarVM/pull/1782 - https://github.com/MoarVM/MoarVM/pull/1785 - https://github.com/MoarVM/MoarVM/pull/1812
## Context When installing `DateTime::Timezones:ver:auth` without testing in a clean Rakudo installation (in particular `Timezones::ZoneInfo` is not installed) causes the installation to fail with ``` ===> Installing: DateTime::Timezones:ver:auth ===> Install...
## Context https://360.zef.pm/ currently has: ``` { "api": "", "auth": "zef:guifa", "authors": [ "Matthew Stephen STUCKWISCH " ], "build-depends": [], "depends": [ "Timezones::ZoneInfo:auth::ver" ], "description": "A module enabling experimental timezone...
We currently don't have a good solution for all of the below: - module documentation rendering (for raku.land, the rakudoc CLI app, ...) - a sound and maintainable LSP implementation...