[perl #127949] [JVM] Dying test in S02-literals/allomorphic.t when comparing ComplexStr with infix:

2016-04-21 Thread Christian Bartolomaeus via RT
On Thu Apr 21 11:53:14 2016, barto...@gmx.de wrote: > > $ perl6-j -e 'say < 8+9i >.re' > Attribute '$!re' is not a native num > in block at -e line 1 Oh, looks like rakudo-j has other problems with the attributes of ComplexStr: $ perl6-j 'say < 8+9i >.im' 8

[perl #127949] [JVM] Dying test in S02-literals/allomorphic.t when comparing ComplexStr with infix:

2016-04-21 Thread Christian Bartolomaeus via RT
On Thu Apr 21 05:54:59 2016, barto...@gmx.de wrote: > The (somewhat) golfed code is: > > $ perl6-j -e 'say < 8+9i > eqv ComplexStr.new(<8+9i>, "8+9i")' Actually the same error occurs with $ perl6-j -e 'say < 8+9i >.re' Attribute '$!re' is not a native num in block at -e line 1

[perl #127951] Probably removing a p6bool where it shouldn't

2016-04-21 Thread via RT
# New Ticket Created by Elizabeth Mattijsen # Please include the string: [perl #127951] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127951 > [17:01:04] m: my $a = 42; say $a =:= $a; say $a.WHAT =:= $a.WHAT; say $a ==

[perl #127950] [BUG] LTA error message on undeclared attribute

2016-04-21 Thread via RT
# New Ticket Created by Tadeusz Sośnierz # Please include the string: [perl #127950] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127950 > The compiler error about undeclared attribute points to nonexistent last+1 line in

[perl #127949] [JVM] Dying test in S02-literals/allomorphic.t when comparing ComplexStr with infix:

2016-04-21 Thread via RT
# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #127949] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127949 > This ticket is about two (skipped) tests in S02-literals/allomorphic.t which

[perl #127948] [JVM] Hangs in spectests with test that uses a Buf when working with IO::Socket::Async

2016-04-21 Thread via RT
# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #127948] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127948 > This ticket is about a (skipped) test in S32-io/IO-Socket-Async.t that

[perl #127947] [JVM] Hangs in spectests with test that calls .quit on Supplier

2016-04-21 Thread via RT
# New Ticket Created by Christian Bartolomaeus # Please include the string: [perl #127947] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127947 > This ticket is about a (skipped) test in S17-supply/Channel.t that regularely

[perl #127945] [BUG] in a grammar calls in Rakudo, shouldn't

2016-04-21 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #127945] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127945 > m: grammar Foo { token TOP { }; token return { .+ }; }; Foo.parse(1); # bug? or