http://qs321.pair.com?node_id=11138960


in reply to Re^2: Changing the name of a function in the call stack
in thread Changing the name of a function in the call stack

This is inferior to Sub::Name for two reasons:

use strict; use warnings; use Carp; sub foo { my $bar = sub { carp "*** inner anon sub called***"; }; $bar->(); } sub generate { my ( $name ) = @_ ; return sub { local *__ANON__ = $name if $name; carp "***sub called***"; foo(); } } sub super { my $not_named = generate(); $not_named->(); my $named = generate('HulaHoop'); $named->(); } super();
Still, it's good to know that it's possible to do it in pure perl.