in reply to Re: Usage of the DB-module (debugger)
in thread Usage of the DB-module (debugger)

Yes, it access the @_ but in fact, thats a lexical array for every subroutine, I think. But the PadWalker is exactly, what I'm searching for. Thanks for this wisdom.
  • Comment on Re^2: Usage of the DB-module (debugger)

Replies are listed 'Best First'.
Re^3: Usage of the DB-module (debugger)
by Anno (Deacon) on Mar 22, 2007 at 13:58 UTC
    No, @_ is a (special) package variable, not a lexical one.

    Anno