Re: [perl #130034] A andthen B orelse C leaks some internal Block

2016-11-09 Thread Lloyd Fournier
Thanks for the update. As viki hinted at, isn't this a bug in itself (andthen problems aside). Why does Empty as the first arg to orelse return a block? say (Empty orelse "foo") -> ;; $_ is raw { #`(Block|140421623865904) ... } Where as say (Any orelse "foo") returns the correct value. On Thu

[perl #130065] [LTA] Gut-referencing warning when composing stubbed role

2016-11-09 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #130065] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130065 > m: role A {...}; class B does A {} rakudo-moar a822bc: OUTPUT«Use of uninitialized valu

[perl #129906] Error when role stubbed as class

2016-11-09 Thread Zoffix Znet via RT
Thanks for the report. Fixed in https://github.com/rakudo/rakudo/commit/a822bcf9cf Tests added in https://github.com/perl6/roast/commit/1e5a081bed

Re: [perl #129909] [RFC] cannot compile to jar files for client use using --target=jvm

2016-11-09 Thread Felipe Valdes
This breaks my heart, since I was planning on delivering a compiled binary to my clients, I was planning on this since I saw the feature in the docs. Is there a way to compile using MOARVM and build a "moarvm" file, similar to a jar file, which can be run by the client without them having the sour

[perl #130064] [BUG] IO::Socket::Async sometimes gives "bindexpayload needs a VMExceptio"

2016-11-09 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #130064] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130064 > I can only reproduce it on camelia and the issue happens when connecting to an IPv6 add

[perl #129363] duckmap doesn't retain structure types

2016-11-09 Thread Zoffix Znet via RT
On Tue, 08 Nov 2016 06:31:15 -0800, c...@fastmail.co.uk wrote: > Pull requests raised for discussion: > > https://github.com/rakudo/rakudo/pull/915 > https://github.com/perl6/roast/pull/180 Merged. Thanks.

[perl #130034] A andthen B orelse C leaks some internal Block

2016-11-09 Thread Zoffix Znet via RT
On Sun, 06 Nov 2016 20:25:50 -0800, lloyd.fo...@gmail.com wrote: > 15:18 < llfourn_> m: say (Str andthen .uc orelse "foo") # more golfed > 15:18 <+camelia> rakudo-moar 1c425f: OUTPUT«-> ;; $_ is raw { > #`(Block|81391040) ... }␤» > 15:23 < llfourn_> m: say (Str andthen .uc orelse "foo")("wee") > 1