[perl #77078] [BUG] Segfault on .[1..*] on an Array in Rakudo

2010-08-07 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #77078] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77078 > rakudo: (my @a)[1..*]; say "alive" rakudo 6ebba8: ( no output ) locally, 'Segmentati

r31922 -[S05] fixed copy-pasto

2010-08-07 Thread pugs-commits
Author: masak Date: 2010-08-08 08:06:34 +0200 (Sun, 08 Aug 2010) New Revision: 31922 Modified: docs/Perl6/Spec/S05-regex.pod Log: [S05] fixed copy-pasto Modified: docs/Perl6/Spec/S05-regex.pod === --- docs/Perl6/Spec/S05-regex.pod

[perl #77022] Grammar.parse doesn't anchor to the end of the parsed string

2010-08-07 Thread Carl Mäsak via RT
ekiru (>): > [1:38pm] tylercurtis: rakudo: grammar Foo { token TOP { 'b' } }; say > Foo.parse('abc').Bool; # this is right > [1:38pm] p6eval: rakudo 19931f: OUTPUT«0␤» > [1:38pm] tylercurtis: rakudo: grammar Foo { token TOP { 'b' } }; say > Foo.parse('bc').Bool; # I don't think this is. > [1:38pm]

[perl #69010] [BUG] &break outside of topicalizer block should be a compile-time error in Rakudo

2010-08-07 Thread Carl Mäsak via RT
On Tue Aug 03 09:18:48 2010, bbkr wrote: > in * release > > [18:16] rakudo: break > [18:16] rakudo efe72c: OUTPUT«Could not find sub &break␤ in > main program body at line 22:/tmp/3991IK9D0k␤» > > [18:18] std: break > [18:18] std 31897: > OUTPUT«===SORRY!===␤Undeclared rout

[perl #77072] [BUG] @a[*] does not work as slice of all indexes

2010-08-07 Thread Patrick R. Michaud via RT
Now fixed in fca2d3. There's already a spectest for the test, but I'm unable to commit spectest changes at the moment so I'll leave the ticket open for someone else to close. I also fixed .{*} in this patch, it probably needs tests as well. Pm

[perl #77010] tests available

2010-08-07 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S03-metaops/hyper.t commit 48c239ec94925a836af68bc090f38378cb3b4f4b Author: radus Date: Sat Aug 7 17:31:04 2010 + [t/spec] Added test for RT 77010 use hypers with local scoped user defined op

[perl #77072] tests available

2010-08-07 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S02-builtin_data_types/array.t commit d0df7b06ecf59256f0520d23b54d073cb965050b Author: radus Date: Sat Aug 7 17:09:30 2010 + [t/spec] added test for RT 77072 @a[*] does not work as slice of al

[perl #77074] lazy rw in map

2010-08-07 Thread via RT
# New Ticket Created by Francesco Rivetti # Please include the string: [perl #77074] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77074 > map-ed items are rw and map results are lazy, but the "lazy thing" is bound only t

[perl #77072] [BUG] @a[*] does not work as slice of all indexes

2010-08-07 Thread via RT
# New Ticket Created by Lithos # Please include the string: [perl #77072] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77072 > Hi! In @a[*], * should mean all indexes of @a, but this does not work in Rakudo, currently:

[perl #77066] [PATCH] Fix + speed up Hash!STORE method

2010-08-07 Thread via RT
# New Ticket Created by Jarrod # Please include the string: [perl #77066] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77066 > The current !STORE method on Hash does not make a copy of the given args to store, so it gobbl

[perl #77070] [BUG] .perl on Attribute does not work with LTA error message

2010-08-07 Thread via RT
# New Ticket Created by Lithos # Please include the string: [perl #77070] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77070 > Hi! Calling .perl on an Attribute gives me a confusing error message: Method 'attributes' no

[perl #77064] :i modifier precedence on alternations

2010-08-07 Thread via RT
# New Ticket Created by Francesco Rivetti # Please include the string: [perl #77064] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=77064 > i expected that both the following should fails: say 'X' if 'bar' ~~ /:i FOO || BA

[perl #77054] rakudo doesn't like explicit $_ in multi-param signatures

2010-08-07 Thread Patrick R. Michaud via RT
On Fri Aug 06 12:56:24 2010, moritz wrote: > 21:53 < moritz_> rakudo: for .kv -> $k, $_ { .perl.say } > 21:53 <+p6eval> rakudo 0e5edb: OUTPUT«0␤1␤» > 21:53 < moritz_> huh. > 21:54 < moritz_> shouldn't that be "a", "b" ? > 21:54 < moritz_> rakudo: for .kv -> $k, $v { $v.perl.say } > 21:54 <+p6eval>