[perl #125482] [BUG] Signature stringifies the `;;` as a comma in Rakudo

2015-06-28 Thread Christian Bartolomaeus via RT
I added a test to 06-signature/introspection.t with commit https://github.com/perl6/roast/commit/9a4daf7f91 Please note that the output no longer contains the type Any: $ perl6-m -e 'sub foo($a;; $b) { say "OH HAI" }; foo(1, 2); say &foo.signature' OH HAI ($a;; $b) I'm closing this ticket as re

Re: [perl #125482] [BUG] Signature stringifies the `;;` as a comma in Rakudo

2015-06-25 Thread Elizabeth Mattijsen
Fixed by f43725a0385b13193476 > On 25 Jun 2015, at 09:38, Carl Mäsak (via RT) > wrote: > > # New Ticket Created by "Carl Mäsak" > # Please include the string: [perl #125482] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id

Re: [perl #125482] [BUG] Signature stringifies the `;;` as a comma in Rakudo

2015-06-25 Thread Elizabeth Mattijsen
> On 25 Jun 2015, at 09:38, Carl Mäsak (via RT) > wrote: > > # New Ticket Created by "Carl Mäsak" > # Please include the string: [perl #125482] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=125482 > > > > Suggested by

[perl #125482] [BUG] Signature stringifies the `;;` as a comma in Rakudo

2015-06-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #125482] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125482 > Suggested by yary. m: sub foo($a;; $b) { say "OH HAI" }; foo(1, 2); say &foo.signature