The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Stacktrace::Configurable::Frame - simple OO access to caller result

SYNOPSIS

 use Stacktrace::Configurable::Frame;

 # constructor
 $f=Stacktrace::Configurable::Frame->new($package,
                                         $filename,
                                         $line,
                                         $subroutine,
                                         $hasargs,
                                         $wantarray,
                                         $evaltext,
                                         $is_require,
                                         $hints,
                                         $bitmask,
                                         $hinthash,
                                         $nr,
                                         \@args);

 # accessor / mutator (lvalue functions)
 $f->package;
 $f->filename;
 $f->line;
 $f->subroutine;
 $f->hasargs;
 $f->wantarray;
 $f->evaltext;
 $f->is_require;
 $f->hints;
 $f->bitmask;
 $f->hinthash;
 $f->nr;
 $f->args;

DESCRIPTION

This module is used to represent stack frames generated by Stacktrace::Configurable.

AUTHOR

Torsten Förtsch <torsten.foertsch@gmx.net>

COPYRIGHT

Copyright 2014- Torsten Förtsch

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

StackTrace::Configurable