![]() |
![]()
| ![]() |
![]()
NAMEDevel::StackTrace::Frame - A single frame in a stack trace VERSIONversion 2.05 DESCRIPTIONSee Devel::StackTrace for details. METHODSSee Perl's "caller" documentation for more information on what these methods return. $frame->packageThe package which created this frame. $frame->filenameThe filename which created this frame. $frame->lineThe line where the frame was created. $frame->subroutineThe subroutine which created this frame. $frame->hasargsThis will be true if a new @_ was created for this this frame. $frame->wantarrayThis indicates the context for the call for this frame. This will be true if called in array context, false in scalar context, and "undef" in void context. $frame->evaltextReturns undef if the frame was not part of an eval. $frame->is_requireReturns undef if the frame was not part of a require. $frame->argsReturns the arguments passed to the frame. Note that any arguments that are references are returned as references, not copies. $frame->hintsReturns the value of $^H for this frame. $frame->bitmaskReturns the value of $bitmask for this frame. $frame->as_stringReturns a string containing a description of the frame. SUPPORTBugs may be submitted at <https://github.com/houseabsolute/Devel-StackTrace/issues>. SOURCEThe source code repository for Devel-StackTrace can be found at <https://github.com/houseabsolute/Devel-StackTrace>. AUTHORDave Rolsky <autarch@urth.org> COPYRIGHT AND LICENSEThis software is Copyright (c) 2000 - 2024 by David Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) The full text of the license can be found in the LICENSE file included with this distribution.
|