On Thu Jun 17 12:45:24 2010, [email protected] wrote:
> This (reduced from HTTP::Daemon) used to work in alpha:
>
> class HTTP::Request {
> has Str $.method is rw;
> }
> ...
> return HTTP::Request.new( method => 'GET' );
>
> but in master the word 'method' fails. Renaming is a workaround. Masak++
> said it seems related to #75694.
> I would edit that ticket, but RT does not accept my bitcard login today.
> Discussed at http://irclog.perlgeek.de/perl6/2010-06-13#i_2432762
Fixed:
22:19 < [Coke]> rakudo: class HTTP::Request { has Str $.method is rw; } ; say
HTTP::Request.new( method => 'GET' ).WHAT;
22:19 <+p6eval> rakudo 142c41: OUTPUT«HTTP::Request()»
Closable with tests.
--
Will "Coke" Coleda