[perl #67134] [BUG] a List generated from a Match tree does not match against Positional in method signature binding in Rakudo

2009-07-01 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67134] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67134 > ooh, I found another one! rakudo: regex foo { foo }; "foofoofoo" ~~ /+/; bar($); sub b

[perl #67124] [BUG] Rakudo doesn't parse embedded comments inside the <> part of <[]> constructs in rules

2009-07-01 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67124] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67124 > rakudo: say "foo" ~~ /<[f] #[comment] + [o]>/ rakudo 5351a3: OUTPUT«perl6regex parse e

[perl #67122] [BUG] Rakudo hangs or crashes on ranges of large \x character specifications in a regex

2009-07-01 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67122] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67122 > rakudo: / <[\x1..\xE]> /; say "alive" rakudo 5351a3: ( no output ) pmichaud:

[perl #67128] [BUG] Null PMC access when matching against grammar G in module M in a rule in Rakudo

2009-07-01 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67128] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67128 > rakudo: module M; grammar G {}; say "foo" ~~ // rakudo 5351a3: OUTPUT«Null PMC access

Re: [perl #67100] [PATCH] Move infix: to the setting

2009-07-01 Thread Patrick R. Michaud
On Wed, Jul 01, 2009 at 02:13:03AM -0700, Moritz Lenz via RT wrote: > On Tue Jun 30 23:35:04 2009, matt-w wrote: > > This patch moves operator infix: to the setting. S03 says it's > > defined in terms of cmp, so that's what this does. The old PIR > > implementation was slightly more complex, and I'

[perl #67100] [PATCH] Move infix: to the setting

2009-07-01 Thread via RT
# New Ticket Created by Matthew Walton # Please include the string: [perl #67100] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67100 > This patch moves operator infix: to the setting. S03 says it's defined in terms of cmp

Re: [perl #66928] [BUG] Null PMC access when doing .WHAT on a built-in infix op in Rakudo

2009-07-01 Thread Kyle Hasselbacher
Fixed in r27349, thanks! Kyle. On Wed, Jul 1, 2009 at 3:34 AM, Jonathan Worthington wrote: > Kyle Hasselbacher wrote: >> >> I've written a test for this in S12-methods/what.t in r27345. >> >> # RT #66928 >> { >>    lives_ok { &infix:<+>.WHAT }, 'Can .WHAT built-in infix op'; >>    isa_ok &infix:<

Re: [perl #66928] [BUG] Null PMC access when doing .WHAT on a built-in infix op in Rakudo

2009-07-01 Thread Jonathan Worthington
Kyle Hasselbacher wrote: I've written a test for this in S12-methods/what.t in r27345. # RT #66928 { lives_ok { &infix:<+>.WHAT }, 'Can .WHAT built-in infix op'; isa_ok &infix:<+>.WHAT, Multi, '.WHAT of built-in infix op is Multi'; } Second one probably wants to be: ok &infix:<+>.W