[perl #117831] [BUG] Grammar capture of '%' separator

2013-05-03 Thread Patrick R. Michaud via RT
Now fixed in 4741028: pmichaud@kiwi:~/p6/rakudo$ cat g.pl grammar G { token TOP { +% } token letter{<[a..z]>} token sep{\,} } say G.parse("a,b,c,d").caps.map({$_.value}); pmichaud@kiwi:~/p6/rakudo$ ./perl6 g.pl a , b , c , d pmichaud@ki

Re: [perl #117831] [BUG] Grammar capture of '%' separator

2013-05-03 Thread David Warring
It's inconsistent with the %% separator. This also also lets me catch variable operators. e.g. grammar G { token TOP { +%% } token letter{<[a..z]>} token sep{\,|\;} } say G.parse("a;b,c,d"); 「a;b,c,d」 letter => 「a」 sep => 「;」 letter => 「b」 sep => 「,」 letter => 「c」

Re: Can't build NQP on the JVM any more :-(

2013-05-03 Thread Will Coleda
Same error here, with: % java -version java version "1.7.0_10" Java(TM) SE Runtime Environment (build 1.7.0_10-b18) Java HotSpot(TM) 64-Bit Server VM (build 23.6-b04, mixed mode) % sw_vers ProductName: Mac OS X ProductVersion: 10.8.3 BuildVersion: 12D78 On Fri, May 3, 2013 at 8:10 AM, Nicholas C

Re: No more Rakudo *?

2013-05-03 Thread Nicholas Clark
On Fri, May 03, 2013 at 07:15:18AM -0500, Patrick R. Michaud wrote: > On Fri, May 03, 2013 at 09:38:58AM +0300, Gabor Szabo wrote: > > http://rakudo.org/ tells me the latest Rakudo * was more than 2 months ago. > > (version 2013.02) > > > > Besides, it would be nice to see plain Rakudo release ann

Re: No more Rakudo *?

2013-05-03 Thread Patrick R. Michaud
On Fri, May 03, 2013 at 09:38:58AM +0300, Gabor Szabo wrote: > http://rakudo.org/ tells me the latest Rakudo * was more than 2 months ago. > (version 2013.02) > > Besides, it would be nice to see plain Rakudo release announcements > reach that site. > Even if only a few lines. Because of some per

Can't build NQP on the JVM any more :-(

2013-05-03 Thread Nicholas Clark
I can't build NQP master for the JVM any more: java -cp src/vm/jvm/stage0:nqp-runtime.jar:3rdparty/asm/asm-4.1.jar nqp --bootstrap --module-path=src/stage1 --setting-path=src/stage1 \ --setting=NQPCORE --no-regex-lib --target=classfile \ --output=src/stage1/QAST.class src/sta