in reply to debugging autoload

In the debugger do your own use ChangeMore; and then you should find its methods with S.

Alternately set a breakpoint inside of AUTOLOAD, then set the breakpoint you need after it has loaded the package it needs. You will have to take this approach if, for instance, the module is using AutoLoader to dynamically load the subroutine.

Replies are listed 'Best First'.
Re^2: debugging autoload
by rhymejerky (Beadle) on Jan 13, 2009 at 01:08 UTC
    That did it!! The package was loaded dynamically, but was able to do 1) 'Use ChangeMore' in debugger 2) 'b postpone ChangeMore::sub1' 3) c to run to the beginning of sub1() Thanks a bunch!!