-
PBC disassemble complains about encoding or flat out segfaults when dealing with large PBC files. Good choices are perl6.pbc from rakudo, nqp-rx.pbc, etc
```
> /home/pitr/parrot-trunk/bin/pbc_disasse…
-
See the following lines:
https://github.com/perl6/nqp/blob/master/src/HLL/Compiler.nqp#L181
https://github.com/perl6/nqp/blob/master/src/HLL/Compiler.nqp#L185
https://github.com/perl6/nqp/blob/mast…
-
## The Problem
When precompiling an imported compilation unit that uses EVAL at the top scope, you get an error.
## Expected Behavior
These compilation units can be precompiled:
```perl6
…
-
role A {
has Int $.a
}
class B does A {
method b(\a) {
$!a := a
}
}
B.new.b(42) # Type check failed in binding; expected NQPMu but got I…
-
I just recently committed examples/sdl/blue_rect.pl as an
example of exercising the SDL library using NQP. At the
beginning of the file the instructions read:
To run this file, execute the following …
-
This line uses the MoarVM prefix to find template.html, whereas the file is in fact under the NQP prefix:
https://github.com/perl6/nqp/blob/fd8a7e5f9255d062e230cb2774dbf25c3d254127/src/vm/moar/HLL/…
-
## The Problem
When I try to profile MUGS, it produces nonsensical to me data.
## Expected Behavior
Produces good profile data.
## Actual Behavior
It produces large files 50-80 MiB in s…
-
```
2018.03.236 zoffix@VirtualBox~$ perl6 -e 'say log10 1000' …
-
Migrated from [rt.perl.org#125487](https://rt-archive.perl.org/perl6/Ticket/Display.html?id=125487) (status was 'open')
Searchable as RT125487$
-
## The Problem
When using a BEGIN phaser to initialize an attribute in a module subject to precompiling, a confusing error is generated when the module is "use"-ed.
To duplicate:
Create a…