-
20:23 < [Coke]> nqp: class EEK {method Numeric() {return 3}}; my $a:=
EEK.new(); say(+$a);
20:23 nqp: OUTPUT«No applicable candidates found to dispatch to for
'Numer…
-
Rakudo's current Metamodel implementation is currently a high-risk zone when it comes to concurrency. One example is my recent fix submitted with PR rakudo/rakudo#5519.
Another can be found in _Pe…
vrurg updated
8 months ago
-
Using a recent nqp REPL on a Debian 8 host:
$ nqp
> c()
Cannot invoke this object (REPR: Null; VMNull)
>
A clearer msg would be something like “object ‘c’ is unknown” or “...undefined”.
-
Many regexes that start with [lookaround assertions](https://docs.raku.org/language/regexes#Lookaround_assertions) that match both a character in the input string and an "empty string"-ish character c…
-
## The Problem
sub foo(array::intarray \SELF) { dd }
my int @i = 1,2,3;
foo(@i);
## Expected Behavior
sub foo(array::intarray \SELF)
## Actual Behavior
===SORRY!==…
-
At the moment, if you need to use `CArray`/`Buf`/`Blob` to represent strings, people use `int8` as its type.
This is bad.
`char` can be unsigned, meaning any code that does this will break on pl…
-
The nqp::attrinited op always returns 1 for native attributes on the JVM backend.
```
r: use nqp; class Foo { has int $.foo }; my $a := Foo.new( ); say nqp::attrinited($a, Foo,"\$!foo")
rakudo-…
usev6 updated
2 years ago
-
## The Problem
Very verbose error message where it's not very useful. The behavior is much different from what I'm used to from *nix tools.
## Expected Behavior
1;0 juerd@cxien:~$ perl6 -…
Juerd updated
4 years ago
-
## The Problem
RakuAST::VarDeclaration seems to not be Any and breaks it tested.
https://irclogs.raku.org/raku/2024-11-03.html#06:05
```raku
use experimental :rakuast; say RakuAST::VarDeclaratio…
-
It appears that a module containing:
````raku
BEGIN Q/use experimental :pack/.EVAL
````
can **NOT** be precompiled or is precompiled incorrectly. Note that taking away the `:pack` from the above …