| Parse-ErrorString-Perl documentation | Contained in the Parse-ErrorString-Perl distribution. |
Parse::ErrorString::Perl::StackItem - a Perl stack item object
version 0.15
The subroutine that was called, qualified with a package name (as
printed by use diagnostics).
File where subroutine was called. See file in
Parse::ErrorString::Perl::ErrorItem.
See file_abspath in Parse::ErrorString::Perl::ErrorItem.
See file_msgpath in Parse::ErrorString::Perl::ErrorItem.
The line where the subroutine was called.
<pshangov at yahoo.com> This software is copyright (c) 2010 by Petar Shangov.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Parse-ErrorString-Perl documentation | Contained in the Parse-ErrorString-Perl distribution. |
package Parse::ErrorString::Perl::StackItem; BEGIN { $Parse::ErrorString::Perl::StackItem::VERSION = '0.15'; } #ABSTRACT: a Perl stack item object use strict; use warnings; sub new { my ( $class, $self ) = @_; bless $self, ref $class || $class; return $self; } use Class::XSAccessor getters => { sub => 'sub', file => 'file', file_abspath => 'file_abspath', file_msgpath => 'file_msgpath', line => 'line', }; 1;
__END__