Re: [perl #60268] -t4 broken

2008-10-31 Thread Will Coleda
On Fri, Oct 31, 2008 at 3:18 PM, via RT Will Coleda <[EMAIL PROTECTED]> wrote: > # New Ticket Created by Will Coleda > # Please include the string: [perl #60268] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=60268 > > > >

[perl #60268] -t4 broken

2008-10-31 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #60268] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=60268 > When running parrot with -t4, this impacts the running bytecode. This isn't obvious with

Re: [perl #60190] [BUG] problems with the compiler-option "-O2" on a 64bit-system

2008-10-31 Thread Andy Dougherty
On Fri, 31 Oct 2008, Gerd Pokorra wrote: > [EMAIL PROTECTED] tge]$ gdb ../../parrot > (gdb) set args ../../runtime/parrot/library/PGE/Perl6Grammar.pbc > --output=TGE/Parser.pir TGE/Parser.pg > (gdb) run > Starting > program: /home/gz016/parrot-sources/debug/parrot-0.8.0/parrot > ../../runtime/pa

Re: [perl #60190] [BUG] problems with the compiler-option "-O2" on a 64bit-system

2008-10-31 Thread Gerd Pokorra
Hello, now a new information with backtrace. Gerd Pokorra [EMAIL PROTECTED] tge]$ gdb ../../parrot GNU gdb Fedora (6.8-22.fc9) Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to c

[perl #60258] Matching against a method produces the wrong result in Rakudo

2008-10-31 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #60258] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=60258 > Rakudo r32247 does the wrong thing when matching a something against the ".method" synta

Re: [perl #60190] [BUG] problems with the compiler-option "-O2" on a 64bit-system

2008-10-31 Thread Gerd Pokorra
Hello, here is some more information. I hope the added command output is useful. Gerd Pokorra [EMAIL PROTECTED] tge]# ../../parrot -g ../../runtime/parrot/library/PGE/Perl6Grammar .pbc --output=TGE/Parser.pir TGE/Parser.pg Segmentation fault [EMAIL PROTECTED] tge]# ../../parrot -t ../../runtime/

Fwd: [november] Re: arrays and arrays ref question

2008-10-31 Thread Илья
So, I have found workaround for now: > my $ar = [1,2,3]; loop ( my $i = 0; $i < $ar.elems; $i++ ) { $ar[$i].say } 1 2 3 2008/10/30 Илья <[EMAIL PROTECTED]>: > I have found one: >> my $ar = [1,2,3]; my $i = 0; while $i < $ar.elems {say $ar[$i]; $i++ }; > 1 > 2 > 3 > > > 2008/10/30 Carl Mäsak <[EMA

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-31 Thread Guy Hulbert
On Fri, 2008-31-10 at 11:31 +0100, Carl Mäsak wrote: > >> > for @$ar { ... } > >> > or even > >> > for @ $ar { ... } > >> > or > >> > for @($ar) { ... } > > Guy (>): > > for ( @$ar ) { ... } > > > > ? > > That's Moritz' first suggestion, but with a pair of unnecessary > parentheses thrown in. :)

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-31 Thread Carl Mäsak
Guy (>), Carl (>>), Moritz (>>>): >> > for @($ar) { ... } >> >> This would arguably be the nicest variant. Well, actually, by "this" I meant all three variants that Moritz suggested. :) >> > for @$ar { ... } >> > or even >> > for @ $ar { ... } >> > or >> > for @($ar) { ... } Guy (>): > for ( @$a