Leon Timmermans
Leon Timmermans
Currently two tests are not working when working from a rakudo checkout when no rakudo is installed, because both try to find the executable in the path. * The `&chdir...
Based on previous experience in perl 5, I'd say the view on dependencies is overly simplistic. Instead of having a flat set of depends, build-depends, and test-depends, we probably want...
When clicking on the source button for a module that has split .pod and .pm files, it will open the (fairly useless) .pod file instead of the much more useful...
Currently, tests and diagnostics are entirely decoupled from a parsing point of view. The obvious approach of trying to parse a diagnostic after a test line fails is not streaming...
Given that SQLite has added support for `RETURNING` in 3.35 (2021-03-12), the documentation should probably assume its presence for better readability (and at some later point the implementation should probably...
Writing a module to upload distributions to CPAN would be much easier if you could just PUT/POST them to the location where you want them to be.
This was broken by 13e5ba49b2cfe0add44db552ecbebb2f785aecbc This should fix #20286
## The Problem `is built` allows you to set if an attribute will be available as a constructor argument, but it doesn't allow you to rename it. That would allow...
## The Problem Given: ``` class Value { method COERCE() { Value } } multi foo(Hash:D) { say "yes" }; multi foo(Value(Any:D)) { say "no" }; foo({ :foo }) ```...
Apparently it's not possible to override a multi method from a role with an only method: ``` raku -e 'role Foo { multi method foo(Int) { } }; class Bar...