[perl #65610] tests available

2009-08-04 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S05-match/perl.t commit d8c325d9592aca0455d8d0ecd54e9ee51a3a08dd Author: kyle Date: Tue Aug 4 19:20:26 2009 + [t/spec] Test for RT #65610 git-svn-id: http://svn.pugscode.org/p...@2787

[perl #64888] tests available

2009-08-04 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S12-class/anonymous.t commit 003f3f51c26dd19f6f7d4969f992d2727f9b034e Author: kyle Date: Tue Aug 4 19:37:22 2009 + [t/spec] Test for RT #64888 git-svn-id: http://svn.pugscode.org/p...

Re: xml grammar

2009-08-04 Thread Daniel Ruoso
Em Seg, 2009-08-03 às 11:04 +1000, Timothy S. Nelson escreveu: > However, my main reason for modifying it was that I needed actions for > what I'm doing. So I'll keep working on that. http://gist.github.com/161467 just to tease :) -- this making the grammar closer to the XML spec... dani

[perl #64880] tests available

2009-08-04 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S05-mass/rx.t commit 611d1a047e27d43a41f9e5c474340fa9d43617c7 Author: kyle Date: Tue Aug 4 19:20:21 2009 + [t/spec] Label tests for RT #64880 git-svn-id: http://svn.pugscode.org/p...@

[perl #64874] tests available

2009-08-04 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S05-match/perl.t commit 4d2fe0287307fdeb8318896610f074fafc4dd9ea Author: kyle Date: Tue Aug 4 18:34:53 2009 + [t/spec] Tests for RT #64874 git-svn-id: http://svn.pugscode.org/p...@278

Re: Testing Perl 6 analog to Perl 5's tie.

2009-08-04 Thread Aaron Sherman
On Sun, Aug 2, 2009 at 1:10 PM, Moritz Lenz wrote: > Let's pick up this old mail before it gets completely warnocked ;-) > > For the record, this discussion only applies to scalar implementation > types. For example for Arrays I expect things to work by overriding the > method postcircumfix:<[ ]>

[perl #68168] Null PMC/Closures in rules not working

2009-08-04 Thread via RT
# New Ticket Created by Tim Nelson # Please include the string: [perl #68168] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68168 > Rakudo version: HEAD of the ins2 branch Parrot: parrot-1.4.0-6.fc10.i386 Code: --

Re: [perl #68154] AutoReply: Null PMC while getting match contents in action class

2009-08-04 Thread Timothy S. Nelson
Forgot to mention, the output I'm getting is: Match.new( # WARNING: this is not working perl code # and for debugging purposes only ast => "TLDE", Str => "TLDE", from => 0, to => 4, named => { 'ident' => Match.new(

[perl #68162] [BUG] Null PMC Access when calling Grammar.regex() in Rakudo

2009-08-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #68162] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68162 > ./perl6 -e 'grammar A { token a { a } }; say "a" ~~ A.a()' Null PMC access in get_in

[perl #68164] Q:PIR { end }

2009-08-04 Thread Gilbert R. Roehrbein (via RT)
# New Ticket Created by Gilbert R. Roehrbein # Please include the string: [perl #68164] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68164 > $ perl6 -e 'Q:PIR { end }' *** glibc detected *** perl6: corrupted double-linked

[perl #68160] [TODO] File test operations should work as $str.IO ~~ :e

2009-08-04 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #68160] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68160 > The spec for file test operations changed; basically it's now $str.IO ~~ $pair instead of

[perl #68158] Ambiguous dispatch to multi: () versus (*...@x)

2009-08-04 Thread via RT
# New Ticket Created by Solomon Foster # Please include the string: [perl #68158] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68158 > colomon: rakudo: multi a () { 1 }; multi a (*...@x) { 2 }; say a(); [2:33pm] p6eval: r