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.3520'; |
5
|
189
|
|
|
189
|
|
1658
|
use strict; |
|
189
|
|
|
|
|
486
|
|
|
189
|
|
|
|
|
5649
|
|
6
|
189
|
|
|
189
|
|
1209
|
use warnings; |
|
189
|
|
|
|
|
529
|
|
|
189
|
|
|
|
|
4578
|
|
7
|
189
|
|
|
189
|
|
999
|
use Carp; |
|
189
|
|
|
|
|
576
|
|
|
189
|
|
|
|
|
22958
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub new { |
10
|
124
|
|
|
124
|
0
|
235
|
my $class = shift; |
11
|
124
|
|
|
|
|
453
|
bless { @_ }, $class; |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
|
14
|
124
|
|
|
124
|
0
|
710
|
sub throw { die shift } |
15
|
|
|
|
|
|
|
|
16
|
18
|
|
|
18
|
0
|
105
|
sub rethrow { die shift } |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |