line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
1825
|
use 5.008; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
50
|
|
2
|
1
|
|
|
1
|
|
7
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
62
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Class::Value::URI::ftp; |
6
|
|
|
|
|
|
|
our $VERSION = '1.100840'; |
7
|
|
|
|
|
|
|
# ABSTRACT: Value class for ftp URIs |
8
|
1
|
|
|
1
|
|
5
|
use parent 'Class::Value::SemanticAdapter'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
9
|
|
|
|
|
|
|
__PACKAGE__ |
10
|
|
|
|
|
|
|
->mk_scalar_accessors(qw(type)) |
11
|
|
|
|
|
|
|
->mk_boolean_accessors(qw(password)); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub semantic_args { |
14
|
111
|
|
|
111
|
1
|
117161
|
my $self = shift; |
15
|
111
|
|
|
|
|
362
|
( $self->SUPER::semantic_args(@_), |
16
|
|
|
|
|
|
|
type => $self->type, |
17
|
|
|
|
|
|
|
password => $self->password, |
18
|
|
|
|
|
|
|
); |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |