line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dancer::Continuation::Route; |
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:SUKRIA'; |
3
|
|
|
|
|
|
|
# ABSTRACT: Internal exception class for Route exceptions in Dancer. |
4
|
|
|
|
|
|
|
$Dancer::Continuation::Route::VERSION = '1.3514_04'; # TRIAL |
5
|
|
|
|
|
|
|
$Dancer::Continuation::Route::VERSION = '1.351404'; |
6
|
166
|
|
|
166
|
|
1576
|
use strict; |
|
166
|
|
|
|
|
346
|
|
|
166
|
|
|
|
|
4085
|
|
7
|
166
|
|
|
166
|
|
779
|
use warnings; |
|
166
|
|
|
|
|
325
|
|
|
166
|
|
|
|
|
3219
|
|
8
|
166
|
|
|
166
|
|
727
|
use Carp; |
|
166
|
|
|
|
|
354
|
|
|
166
|
|
|
|
|
8428
|
|
9
|
|
|
|
|
|
|
|
10
|
166
|
|
|
166
|
|
978
|
use base qw(Dancer::Continuation); |
|
166
|
|
|
|
|
374
|
|
|
166
|
|
|
|
|
23821
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
|
13
|
111
|
50
|
|
111
|
1
|
387
|
sub return_value { $#_ ? $_[0]->{return_value} = $_[1] : $_[0]->{return_value} } |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |