I\'m currently working in a very complex Perl architecture, and I want to create some debugging tools. Since a lot of the behavior involves anonymous subroutines, I\'d like to a
Also, Devel::Dwarn sets Data::Dumper so it deparses by default. It quickly made it my favourite dumper:
Data::Dumper
perl -MDevel::Dwarn -e "Dwarn { callback => sub { 1+1 } }"
gives
{ callback => sub { 2; } }