in reply to Re^2: Need Help Refactoring Method Calls
in thread Need Help Refactoring Method Calls
Remember, Foo->new, or $class->new, both translate to new( Foo ) or new( $class ), which is simply passing the string into the new() call.
(I know, I should probably have written Foo::new('Foo'), plus there's some method dispatching logic buried in the ->, but that doesn't detract from the fact.)
|
|---|