This is an automatically generated mail to inform you that tests are now
available in t/spec/S02-names_and_variables/names.t
commit 6d7027ab9bb8b4a6c73582569e1d2732dbe4d723
Author: moritz
Date: Mon Jul 19 21:10:30 2010 +
[t/spec] test for RT #74276, names starting with Q
git-
Perlito is a compiler that implements a subset of Perl 6.
Perlito compiles "MiniPerl6" programs (such as itself) into one of the
'backend' languages: Go, Common Lisp, Perl 5, Javascript, and Python
2.
Web page: http://www.perlito.org
Run online in the browser: http://perlcabal.org/~fglock/perlito.
# New Ticket Created by Salvador Fandiño
# Please include the string: [perl #76572]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=76572 >
$ ./perl6 -e 'my Int @a; push @a, 5; say @a[0]'
maximum recursion depth exceeded
Hi,
Am 19.07.2010 04:20, schrieb Stéphane Payrard:
Note that I sent a patch to that effect to p6c Jun 2 in a mail titled
"support of parsing from a non TOP rule"
Either somebody applied it, or it was superfluous - :rule
works in Rakudo (though I don't know if it works in nqp-rx).
Anyway, th
Now fixed in 9005478:
pmich...@plum:~/rakudo$ ./perl6
> say "b" ~~ /(.*)b/;
b
> say "ab" ~~ / (ab|a) b /;
ab
> grammar G { regex TOP { a }; regex foo { a* } }; say
?G.parse("aaa");
1
>
Pm
Note that I sent a patch to that effect to p6c Jun 2 in a mail titled
"support of parsing from a non TOP rule"
that has not been applied. It still works. Attached below. Testable by :
use Test; grammar A { token hi { hi } }; ok A.parse( 'hi',
:rule) eq 'hi', "Grammar.parse: :rule"
On Sun, J