line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
1498
|
use 5.008; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
39
|
|
2
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
27
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
21
|
|
|
1
|
|
|
|
|
49
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Class::Value::URI::http; |
6
|
|
|
|
|
|
|
our $VERSION = '1.100840'; |
7
|
|
|
|
|
|
|
# ABSTRACT: Value class for http URIs |
8
|
1
|
|
|
1
|
|
5
|
use parent 'Class::Value::SemanticAdapter'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
9
|
|
|
|
|
|
|
__PACKAGE__->mk_scalar_accessors(qw(scheme)); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub semantic_args { |
12
|
26
|
|
|
26
|
1
|
26124
|
my $self = shift; |
13
|
26
|
|
|
|
|
100
|
($self->SUPER::semantic_args(@_), scheme => $self->scheme,); |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |