On Wed, Jan 14, 2009 at 10:00:33PM -0800, Carl Mäsak wrote: > <TimToady> rakudo: my $t = 5; say $t.i > <p6eval> rakudo 35576: OUTPUT«Method 'i' not found for invocant of > class 'Int [...] > <masak> TimToady: should that work? > <TimToady> think so > * masak submits rakudobug
Rakudo doesn't yet recognize the dotty form of postfix operators -- that will likely come when we have protoregexes in PGE. Just to verify: $t.i should always parse as postfix:<i> and never as a method call here? (That's what STD.pm currently does, if I'm reading it correctly.) Pm