[perl #126702] [JVM] failing test in S06-multi/subsignature.t: wrong multi candidate called when slurpy and named are passed

2015-11-21 Thread via RT
# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #126702] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126702 > The following code does not give the expected result ('2') on rakudo.jvm: $

[perl #126705] Make little/big endian versions of MVM_string_utf16_encode_substr

2015-11-21 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #126705] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126705 > MVM_string_utf16_encode_substr works using native endianness; we should have operations

[perl #126704] Have MVM_string_utf16_encode_substr emit a BOM

2015-11-21 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #126704] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126704 > Since MVM_string_utf16_encode_substr operates on UTF-16 using native endianness, it should

[perl #126703] Typed Shaped Arrays can't be initialized

2015-11-21 Thread via RT
# New Ticket Created by Timo Paulssen # Please include the string: [perl #126703] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126703 > Reproducing test: my @a[3;3] = , , ; say @a; # works my Str @a[3;3] = , , ; say @a; #

[perl #120919] [BUG] Private methods in roles don't bind 'self' correctly in Rakudo

2015-11-21 Thread Christian Bartolomaeus via RT
The test in S14-roles/basic.t passes now on JVM. Also the code from lizmat++ does not die: $ perl6 -e 'role R { method !m(@a) { say "ok: @a[]" }; method x() { self!m((my %).values) } }; class C does R { }; C.x' ok: I haven't yet looked at src/core/IO/Local.pm or src/core/Temporal.pm

[perl #126100] Wrong return value from "require"

2015-11-21 Thread Tobias Leich via RT
Patch: https://github.com/rakudo/rakudo/commit/95558bb58e Tests: https://github.com/perl6/roast/commit/ff452eb56a Closing as resolved.

[perl #126679] [JVM] failing tests in S32-str/split-simple.t: java.lang.RuntimeException: Cannot access a native attribute as a reference attribute

2015-11-21 Thread Christian Bartolomaeus via RT
Thanks! I'm closing this ticket as 'resolved'.

[perl #126673] [JVM] Failing tests in S03-operators/arith.t: X::TypeCheck::Return exception produced no message

2015-11-21 Thread Christian Bartolomaeus via RT
Great. I unfudged the tests with commit https://github.com/perl6/roast/commit/e2174a8adf. I'm closing this ticket as 'resolved'.

[perl #126700] [JVM] calling .index with negative start position on string does not return Nil

2015-11-21 Thread via RT
# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #126700] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126700 > rakudo.jvm seems to ignore that $pos is negative in the following example: $

[perl #126701] [JVM] FIRST not executed in 'for' loop

2015-11-21 Thread via RT
# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #126701] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126701 > It looks like FIRST is not executed in 'for' loop on rakudo.jvm: $ perl6-j -e

[perl #124502] Roast rakudo skip/todo test:./S02-types/array-shapes.t line:7 reason: 'array shapes NYI'

2015-11-21 Thread Christian Bartolomaeus via RT
Most of the tests in S02-types/array-shapes.t pass now (unfudged/adjusted with commit https://github.com/perl6/roast/commit/4a5edf73db). Maybe the other tests should be reviewed?