r30412 - docs/Perl6/Spec

2010-04-19 Thread pugs-commits
Author: lwall Date: 2010-04-20 02:23:07 +0200 (Tue, 20 Apr 2010) New Revision: 30412 Modified: docs/Perl6/Spec/S02-bits.pod Log: [S02] define the term 'now' define math on instants and durations Modified: docs/Perl6/Spec/S02-bits.pod ===

[perl #74488] [BUG] A closure retains the lexpad of the innermost call of the routine it's in in Rakudo

2010-04-19 Thread Carl Mäsak via RT
pmichaud: do you think http://rt.perl.org/rt3/Ticket/Display.html?id=74488 is identical to http://rt.perl.org/rt3/Ticket/Display.html?id=73034 ? masak: looking masak: likely yes. The problem is that the closure isn't being cloned upon assignment. ah. so I'll merge the tickets, then? wfm

[perl #74492] [BUG] Rakudo can't parse two-adverbs-in-a-row as having an invisible comma between them

2010-04-19 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74492] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74492 > std: sub foo {}; foo(:a :b :c) std 30407: OUTPUT«ok 00:01 109m␤» rakudo: sub foo(:$a,

[perl #74490] [BUG] The type of a named method declaration is Code, not Method, in Rakudo

2010-04-19 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74490] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74490 > rakudo: class A { say (method foo { 23 }).WHAT }; rakudo 538606: OUTPUT«Code()␤» raku

[perl #74488] [BUG] A closure retains the lexpad of the innermost call of the routine it's in in Rakudo

2010-04-19 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74488] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74488 > I found the disastrous bug. it took all of yesterday evening. and half of the night.