[perl #65260] [BUG] .perl on protoobject should not have parens

2009-04-29 Thread Patrick R. Michaud (via RT)
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #65260] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65260 > 21:31 rakudo: "string".WHAT.perl.say 21:31 rakudo 39e45d: OUTPUT«Str()␤» 21:31

r26565 - docs/Perl6/Spec

2009-04-29 Thread pugs-commits
Author: lwall Date: 2009-04-29 21:39:52 +0200 (Wed, 29 Apr 2009) New Revision: 26565 Modified: docs/Perl6/Spec/S05-regex.pod Log: [S05] reserve hash notation Modified: docs/Perl6/Spec/S05-regex.pod === --- docs/Perl6/Spec/S05-reg

[perl #60946] [BUG] cannot override isa() if PIR uses isa opcode

2009-04-29 Thread Patrick R. Michaud via RT
On Sun Nov 30 21:05:13 2008, ch...@chrisdolan.net wrote: > I'm trying to make mock objects in Rakudo, but the 'isa' opcode in > PIR seems to ignore my overridden isa() method. ...and that's likely to be the case for some time to come. In general, Parrot's vtable functions don't map well onto

[perl #60946] [BUG] cannot override isa() if PIR uses isa opcode

2009-04-29 Thread Ron Schmidt via RT
>From IRC discussion on 4/29 13:54 pmichaud at the moment I think I'm going to declare RT #60946 (sic.) "not a bug" and let it slide for now. We don't currently make any guarantees that Rakudo objects play nicely with Parrot 'isa' opcodes. 13:54 PhatEddy The ticket seems to ask whether parrot cl

r26554 - docs/Perl6/Spec

2009-04-29 Thread pugs-commits
Author: szabgab Date: 2009-04-29 15:37:10 +0200 (Wed, 29 Apr 2009) New Revision: 26554 Modified: docs/Perl6/Spec/S04-control.pod Log: add some X<> tags Modified: docs/Perl6/Spec/S04-control.pod === --- docs/Perl6/Spec/S04-control.

[perl #65238] eval in a method doesn't use the namespace of the class in Rakudo

2009-04-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65238] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65238 > rakudo: class A { sub bar() { return 42 }; method foo() { say bar; say eval("bar") } };

[perl #65236] .chunks doesn't work properly on submatches in Rakudo

2009-04-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65236] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65236 > * moritz_ slaps forehead I know what's wrong .chunks thinks that .from and .to are zer

r26551 - docs/Perl6/Spec t/01-sanity

2009-04-29 Thread pugs-commits
Author: szabgab Date: 2009-04-29 10:44:57 +0200 (Wed, 29 Apr 2009) New Revision: 26551 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S04-control.pod t/01-sanity/04-if.t t/01-sanity/06-use.t t/01-sanity/07-range.t Log: adding smartlinks and X<> tags Modified: docs/Perl6/Spe

[perl #65224] class name as string unexpectedly "works"

2009-04-29 Thread Jonathan Scott Duff
# New Ticket Created by "Jonathan Scott Duff" # Please include the string: [perl #65224] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65224 > < PerlJam> rakudo: class Foo { }; my $x = "Foo"; my $y = $x.new; $y.WHAT.say;

[perl #64742] [PATCH] Simplification from resolution of RT 53926

2009-04-29 Thread Ron Schmidt via RT
On Tue Apr 28 11:06:06 2009, pmichaud wrote: >> On Wed Apr 15 03:27:17 2009, ronaldxs wrote: ... >> but rakudo with patch passes spectest. > Note that as a (Perl 6) method, EXPR still needs to have a :slurpy > :named parameter to catch any additional named arguments. (All methods > in Perl 6 ha