1Devel::StackTrace::FramUes(e3r)Contributed Perl DocumentDaetvieoln::StackTrace::Frame(3)
2
3
4
6 Devel::StackTrace::Frame - A single frame in a stack trace
7
9 version 2.04
10
12 See Devel::StackTrace for details.
13
15 See Perl's "caller" documentation for more information on what these
16 methods return.
17
18 $frame->package
19 $frame->filename
20 $frame->line
21 $frame->subroutine
22 $frame->hasargs
23 $frame->wantarray
24 $frame->evaltext
25 Returns undef if the frame was not part of an eval.
26
27 $frame->is_require
28 Returns undef if the frame was not part of a require.
29
30 $frame->args
31 Returns the arguments passed to the frame. Note that any arguments that
32 are references are returned as references, not copies.
33
34 $frame->hints
35 $frame->bitmask
36 $frame->as_string
37 Returns a string containing a description of the frame.
38
40 Bugs may be submitted at
41 <https://github.com/houseabsolute/Devel-StackTrace/issues>.
42
43 I am also usually active on IRC as 'autarch' on "irc://irc.perl.org".
44
46 The source code repository for Devel-StackTrace can be found at
47 <https://github.com/houseabsolute/Devel-StackTrace>.
48
50 Dave Rolsky <autarch@urth.org>
51
53 This software is Copyright (c) 2000 - 2019 by David Rolsky.
54
55 This is free software, licensed under:
56
57 The Artistic License 2.0 (GPL Compatible)
58
59 The full text of the license can be found in the LICENSE file included
60 with this distribution.
61
62
63
64perl v5.30.1 2020-01-29 Devel::StackTrace::Frame(3)