Created
August 16, 2011 14:30
-
-
Save moritz/1149217 to your computer and use it in GitHub Desktop.
Summary on how my Perl 6 modules behave on nom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XML-Writer OK | |
SVG OK | |
SVG::Plot Not ok: PAST::Compiler can't compile node of type SVG::Plot::AxisPosition | |
Math::RungeKutta OK (but lots of "Use of uninitialized value in numeric context" from "make test", didn't have those warnings in master) | |
CGI::Application Not OK: Symbol '$callback' not predeclared in <anonymous> | |
JSON::Tiny Not OK: :base($number) conversion NYI | |
Nonogram Not OK: Method 'rxtype' not found for invocant of class 'PAST;Regex' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is probably due to nom not supporting variable in rules.
[rakudo/rakudo nom] $ cat A.pm
grammar A {
my $a = 'a';
token TOP { <$a> }
}
[ rakudo/rakudo nom] $ perl6 A.pm
===SORRY!===
Method 'rxtype' not found for invocant of class 'PAST;Regex'
[ rakudo/rakudo nom] $