First, you shouldn't do this. Second, as implemented in perl,
$self->SUPER:: doesn't have anything to do with $self;
SUPER is relative to the package the call is in, not the object/class
the method is called on. Third, try using
http://search.cpan.org/perldoc/SUPER.