r30319 - docs/Perl6/Spec

2010-04-05 Thread pugs-commits
Author: lwall Date: 2010-04-05 20:30:30 +0200 (Mon, 05 Apr 2010) New Revision: 30319 Modified: docs/Perl6/Spec/S05-regex.pod Log: [S05] rewrite misleading description of "thunk" Modified: docs/Perl6/Spec/S05-regex.pod === --- doc

r30317 - docs/Perl6/Spec

2010-04-05 Thread pugs-commits
Author: lwall Date: 2010-04-05 19:16:34 +0200 (Mon, 05 Apr 2010) New Revision: 30317 Modified: docs/Perl6/Spec/S02-bits.pod Log: [S02] rename ObjID to ObjAt to reduce possibility of collision with user types Modified: docs/Perl6/Spec/S02-bits.pod ==

r30315 - docs/Perl6/Spec

2010-04-05 Thread pugs-commits
Author: lwall Date: 2010-04-05 18:47:42 +0200 (Mon, 05 Apr 2010) New Revision: 30315 Modified: docs/Perl6/Spec/S02-bits.pod Log: [S02] clarify that object identity from WHICH may not be a mundane value type Modified: docs/Perl6/Spec/S02-bits.pod ===

[perl #74054] is rw in sub signature does not appear to be working

2010-04-05 Thread via RT
# New Ticket Created by Richard Hainsworth # Please include the string: [perl #74054] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74054 > using rakudo updated on 4.4.10 perl6 > sub aaa (%h is rw) { %h = Z 1,2,3 }; my

[perl #72968] [BUG] Internal Parrot error when invoking a Hash object in Rakudo

2010-04-05 Thread Will Coleda via RT
On Sat Feb 20 03:57:14 2010, masak wrote: > rakudo: {nom,nom,nom}.=() > rakudo 3b869c: OUTPUT«src/hash.c:144: failed assertion > 's'␤Backtrace - Obtained 17 stack frames [...] > Now you've gone and done it. > it eated itself > * masak submits diakopter's rakudobug > rakudo: {}.=() > rakudo 71

Re: [perl #74030] Perl6 doesn't run if invoked from external directories

2010-04-05 Thread Franz Nagel
Am 03.04.2010 21:08, schrieb Moritz Lenz via RT: Did you run 'make install', and try to launch the installed executable? I didn't build but installed the precompiled Windows version. ( http://sourceforge.net/projects/parrotwin32/files/ ) It runs beautifully out of the box. Just the special

[perl #73488] [BUG] LTA error message when an only sub fails to bind against hash keys in a nested signature in Rakudo

2010-04-05 Thread jn...@jnthn.net via RT
On Wed Mar 10 06:25:37 2010, masak wrote: > rakudo: sub foo(%h($left)) {}; foo({ no => "left key" }) > rakudo 5b81df: OUTPUT«Not enough positional parameters > passed; got 0 but expected 1 [...] > I guess that's a correct error message... wonder if it can be > made awesomer, though... Awesomize

[perl #73892] [BUG] Bogus error about placeholder variables when %_ is flattened inside a method in Rakudo

2010-04-05 Thread jn...@jnthn.net via RT
On Mon Mar 29 09:26:52 2010, masak wrote: > rakudo: class A { method f(*%_) { |%_ } }' > rakudo 534afd: OUTPUT«Placeholder variables cannot be used in > a method [...] > That's certainly a bug > * masak submits rakudobug Now fixed; given to moritz++ for tests. Jonathan

[perl #73462] [BUG] The object coming back from a regex match is not of type Match in Rakudo

2010-04-05 Thread Moritz Lenz via RT
This has been discussed on IRC, but for the record I'll dump my thoughts and current progress here. First the matter is much deeper than simply a wrong type name: All of the objects accessible form the current Match object are really parrot types, so for example .kv won't work on the hashes, .sort

[perl #74060] [BUG] Assigning the result of a statement-modifying for to an array variable causes it to contain an ArrayIterator in Rakudo

2010-04-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74060] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74060 > rakudo: my @s = ($_ * 2 if $_ ** 2 > 3 for 0 .. 99); say @s.perl rakudo 02cf9c: OUTPUT

[perl #74056] [BUG] A grep matching nothing boolifies to True in Rakudo

2010-04-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74056] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74056 > rakudo: my @a=; say ?...@a.grep("all") rakudo 02cf9c: OUTPUT«1␤» mberends: did you su