[perl #123728] Require 'use nqp;' for userspace code that uses nqp:: features

2015-02-04 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #123728] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123728 > Some Perl 6 module writers have been putting nqp:: calls into their code, as the s

[perl #122095] .WHICH value changing in MoarVM

2015-02-04 Thread Christian Bartolomaeus via RT
I added a tests to S04-statements/for.t with commit https://github.com/perl6/roast/commit/b4b8ab1cf2 I'm closing this ticket now.

[perl #123731] [BUG] `last` inside a `NEXT` phaser in a loop does not abort the loop

2015-02-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #123731] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123731 > m: for ^5 { .say; NEXT { last } } rakudo-moar 613c0b: OUTPUT«0␤1␤2␤3␤4␤» bug? * masak

[perl #123732] [BUG] `return` in a NEXT phaser in a loop outside of any routine aborts the iteration in Rakudo

2015-02-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #123732] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123732 > m: for ^5 { .say; NEXT { return } } rakudo-moar 613c0b: OUTPUT«0␤1␤2␤3␤4␤» that last o