[perl #117829] Attempting to initialize non-existing attribute is silent

2013-05-03 Thread via RT
# New Ticket Created by Elizabeth Mattijsen # Please include the string: [perl #117829] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=117829 [23:55:42] lizmat rn: class A { }; my $a= A.new( foo = 1 ); $a #

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

2013-05-03 Thread via RT
# New Ticket Created by David Warring # Please include the string: [perl #117831] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=117831 $ perl6 --version This is perl6 version 2013.04-22-gd2af402 built on

[perl6/specs] 6e2d9c: Define flipflops to use smartmatch semantics

2013-05-03 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6e2d9c944ca5b50cef9e23b15f130a626c1c2b9e https://github.com/perl6/specs/commit/6e2d9c944ca5b50cef9e23b15f130a626c1c2b9e Author: Larry Wall la...@wall.org Date: 2013-05-02 (Thu, 02 May 2013) Changed

No more Rakudo *?

2013-05-03 Thread Gabor Szabo
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. regards Gabor

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

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 personal

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

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 {letter +%% sep} 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」

[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 {letter +% sep} 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