| Parse-StackTrace documentation | Contained in the Parse-StackTrace distribution. |
Parse::StackTrace::Type::GDB::Thread - A thread from a GDB stack trace
This is a straightforward implementation of Parse::StackTrace::Thread, with nothing special about it.
| Parse-StackTrace documentation | Contained in the Parse-StackTrace distribution. |
package Parse::StackTrace::Type::GDB::Thread; use Moose; extends 'Parse::StackTrace::Thread'; sub add_frame { my $self = shift; my ($frame) = @_; $self->SUPER::add_frame(@_); } __PACKAGE__->meta->make_immutable; 1; __END__