Re: Calling Class Methods...

2007-10-22 Thread Allison Randal
Will Coleda wrote: Now I get "Method 'slurp' not found" but if I change getclass to 'new', then it ... well, it gets further. Is this because: 1) the syntax for class/static methods changed? 2) slurp was modified to no longer be static? 3) we can't do static anymore? In any case, the perldoc

Calling Class Methods...

2007-10-21 Thread Will Coleda
I'm trying to convert partcl to no longer use the old object model. I have code like this: $P0 = getclass 'ParrotIO' $S0 = $P0.'slurp'($S1) Found the note saying getclass -> get_class... Now I get "Method 'slurp' not found" but if I change getclass to 'new', then it ... well, it gets further.