in reply to Re^4: Would someone mind helping me understand this Perl OO code?
in thread Would someone mind helping me understand this Perl OO code?

In perlboot, an intro to OO in Perl, it is discussed in The extra parameter of method invocation.

Update: To answer your updated question, the package name or blessed object are passed in a method invocation whenever you use the The Arrow Operator to invoke a package method. So Node->new() will pass "Node" and new(), Node::new() or $code_ref->() would not.