[perl #74276] tests available

2010-07-19 Thread kyleha
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" MiniPerl6 5.0 - more bootstrapped backends, more Perl 6 compatibility

2010-07-19 Thread Flavio S. Glock
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.

[perl #76572] unexpected recursion

2010-07-19 Thread via RT
# 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

Re: r31755 -[S05] specifiy that .parse can invoke other subrules than TOP by name

2010-07-19 Thread Moritz Lenz
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

[perl #73608] [BUG] Rakudo (nqp-rx) regexes won't backtrack properly into capturing parentheses or subrules

2010-07-19 Thread Patrick R. Michaud via RT
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

Re: r31755 -[S05] specifiy that .parse can invoke other subrules than TOP by name

2010-07-19 Thread 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" 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