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. | [reply] [d/l] |
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!!
| [reply] |