File Coverage

blib/lib/Parse/StackTrace/Type/GDB/Thread.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Parse::StackTrace::Type::GDB::Thread;
2 1     1   1840 use Moose;
  0            
  0            
3              
4             extends 'Parse::StackTrace::Thread';
5              
6             sub add_frame {
7             my $self = shift;
8             my ($frame) = @_;
9             $self->SUPER::add_frame(@_);
10             }
11              
12             __PACKAGE__->meta->make_immutable;
13              
14             1;
15              
16             __END__
17              
18             =head1 NAME
19              
20             Parse::StackTrace::Type::GDB::Thread - A thread from a GDB stack trace
21              
22             =head1 DESCRIPTION
23              
24             This is a straightforward implementation of L<Parse::StackTrace::Thread>,
25             with nothing special about it.