http://www.perlmonks.org?node_id=633665


in reply to what would you like to see in perl5.12?

A real working version of Sub::Uplevel and maybe some more control over the call stack (context objects?). :)

Example:
package main; my $i = 23; &Foo::test(); package Foo; sub test { my $context = uplevel_context(); eval('print $i', $context); }