When working with the standard debugger (perl5db.pl) and executing a script that call a package ("use momo;"), the first line the debugger stops on is after the compilation.
When working with Devel::Trace, on the other hand, you get to see the first pass on the code, inclusing the call to the package itself.
I want to skip the compilation part when using Devel::Trace.
Trying to look into perl5db.pl all I saw was the remark:
In the beginning of sub DB, but I could not determine where $single gets its value.