[perl #113956] [BUG] Things that are not SixModelObjects leak out of BEGIN blocks which end with a require in Rakudo

2012-07-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #113956] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=113956 > r: BEGIN { require Test } rakudo 16db64: OUTPUT«===SORRY!===␤Can only use nqp_s

[perl #113954] [BUG] Usage message suggests unquoted way of passing several-word argument which will not work in Rakudo

2012-07-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #113954] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=113954 > $ perl6 -e 'multi MAIN("foo bar") {}' foo bar Usage: -e '...' foo bar $ perl6 -

[perl #113952] [BUG] The Sub object returned from Method.^methods does not have a .gist method in Rakudo

2012-07-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #113952] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=113952 > r: class A { method x {} }; say A.^methods rakudo 16db64: OUTPUT«x␤» r: class

[perl #113950] [BUG] 'next' or 'last' don't trigger LEAVE phaser in loop in Rakudo

2012-07-02 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #113950] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=113950 > r: loop { last; LEAVE say "bye!" }; say "outside" rakudo 16db64: OUTPUT«outside