[perl #123083] [BUG] `anon enum` should work the same way as `enum ::`, and `my %e = enum ::` should work too in Rakudo

2015-10-10 Thread Tobias Leich via RT
Two more tests: https://github.com/perl6/roast/commit/51332a9ae1

[perl #123083] [BUG] `anon enum` should work the same way as `enum ::`, and `my %e = enum ::` should work too in Rakudo

2015-10-10 Thread Tobias Leich via RT
Patch: https://github.com/rakudo/rakudo/commit/8f4e908869 Test: https://github.com/perl6/roast/commit/f47d1dab1b Closing ticket.

[perl #67700] Method calls after blocks passed to list-operator methods are parsed incorrectly

2015-10-10 Thread Tobias Leich via RT
Design docs got aligned to rakudo so that method calls on blocks just do what one would expect. Patch: https://github.com/perl6/specs/commit/d1d502fb71 Tests: https://github.com/perl6/roast/commit/95a28225ed Closing ticket.

[perl #126318] [BUG] trait 'is default' on attributes has no effect

2015-10-10 Thread via RT
# New Ticket Created by Tobias Leich # Please include the string: [perl #126318] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126318 > say class { has Int $.foo is default(0) }.new.foo rakudo-moar 025ec1: OUTPUT«(Int)␤» cla

[perl #126291] [BUG] :D on attrs and vars fails with a defined default value

2015-10-10 Thread Tobias Leich via RT
Patch: https://github.com/rakudo/rakudo/commit/80a3d07235 Tests: https://github.com/perl6/roast/commit/071720b28d Closing ticket.

Re: [perl #126297] [bug] filehandle read in a thead causes a segfault when the thread ends

2015-10-10 Thread Nicholas Clark
On Thu, Oct 08, 2015 at 05:43:11AM -0700, Carlin Bingham wrote: > Doesn't seem to happen if the main program thread is still running when > the thread exits. > > > use v6; > > Thread.start({ > my $fh = open('/dev/urandom'); > say $fh.read(16); > say "alive"; >

[perl #126317] [BUG] custom declarator examples in S12 don't work (nested packages)

2015-10-10 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #126317] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126317 > http://design.perl6.org/S12.html#Custom_Meta-objects my module EXPORTHOW::DECLARE