Devel::StackTrace::Frame - A single frame in a stack trace |
package()
filename()
line()
subroutine()
hasargs()
wantarray()
evaltext()
is_require()
args()
hints()
bitmask()
as_string()
Devel::StackTrace::Frame - A single frame in a stack trace
version 2.01
See the Devel::StackTrace manpage for details.
See Perl's caller()
documentation for more information on what these
methods return.
package()
filename()
line()
subroutine()
hasargs()
wantarray()
evaltext()
Returns undef if the frame was not part of an eval.
is_require()
Returns undef if the frame was not part of a require.
args()
Returns the arguments passed to the frame. Note that any arguments that are references are returned as references, not copies.
hints()
bitmask()
as_string()
Returns a string containing a description of the frame.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2000 - 2016 by David Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
Devel::StackTrace::Frame - A single frame in a stack trace |