[perl6/specs] 845eb7: Typos and POD fixes in S02

2014-11-03 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 845eb79ae24bcf36c968c541231d66efd281551f https://github.com/perl6/specs/commit/845eb79ae24bcf36c968c541231d66efd281551f Author: Lucas Buchala lucasbuch...@gmail.com Date: 2014-11-03 (Mon, 03 Nov 2014)

[perl #123114] [BUG] Enum members not exported with enumeration itself in Rakudo

2014-11-03 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #123114] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=123114 masak m: module M { enum A is export B C }; import M; say B camelia rakudo-moar

[perl #123115] [BUG] ?? !! report LTA confusion when listop gobbles the !! in Rakudo

2014-11-03 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #123115] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=123115 masak m: sub foo { 2 }; say 1 ?? foo !! 3 camelia rakudo-moar 315ec6:

[perl #123116] [BUG] Weird error for code parameters with subsignatures in Rakudo

2014-11-03 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #123116] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=123116 masak m: class Dog {}; sub foo(block (Dog -- Bool)) { say OH HAI }; foo(sub (Dog $x) {