in reply to Distinguish method/function call during debugger?
Is it even possible? What about
and evensub Deb::func { print("Deb!\n"); } $obj = bless {}, 'Bar'; $obj->Deb::func();
sub Foo::func { print("Foo!\n"); } @Deb::ISA = 'Foo'; $obj = bless {}, 'Bar'; $obj->Deb::func();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Distinguish method/function call during debugger?
by diotalevi (Canon) on Feb 23, 2006 at 17:13 UTC | |
by ikegami (Patriarch) on Feb 23, 2006 at 17:17 UTC | |
by diotalevi (Canon) on Feb 23, 2006 at 17:21 UTC | |
by ikegami (Patriarch) on Feb 23, 2006 at 17:59 UTC |