line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dancer::Continuation; |
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:SUKRIA'; |
3
|
|
|
|
|
|
|
# ABSTRACT: Continuation exception (internal exception) for Dancer |
4
|
|
|
|
|
|
|
$Dancer::Continuation::VERSION = '1.3521'; |
5
|
189
|
|
|
189
|
|
1654
|
use strict; |
|
189
|
|
|
|
|
469
|
|
|
189
|
|
|
|
|
5436
|
|
6
|
189
|
|
|
189
|
|
1097
|
use warnings; |
|
189
|
|
|
|
|
551
|
|
|
189
|
|
|
|
|
4633
|
|
7
|
189
|
|
|
189
|
|
1025
|
use Carp; |
|
189
|
|
|
|
|
478
|
|
|
189
|
|
|
|
|
23030
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub new { |
10
|
124
|
|
|
124
|
0
|
240
|
my $class = shift; |
11
|
124
|
|
|
|
|
452
|
bless { @_ }, $class; |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
|
14
|
124
|
|
|
124
|
0
|
785
|
sub throw { die shift } |
15
|
|
|
|
|
|
|
|
16
|
18
|
|
|
18
|
0
|
109
|
sub rethrow { die shift } |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |