line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Geoffrey::Role::ConverterType; |
2
|
|
|
|
|
|
|
|
3
|
20
|
|
|
20
|
|
250594
|
use utf8; |
|
20
|
|
|
|
|
120
|
|
|
20
|
|
|
|
|
122
|
|
4
|
20
|
|
|
20
|
|
644
|
use strict; |
|
20
|
|
|
|
|
42
|
|
|
20
|
|
|
|
|
388
|
|
5
|
20
|
|
|
20
|
|
96
|
use warnings; |
|
20
|
|
|
|
|
47
|
|
|
20
|
|
|
|
|
586
|
|
6
|
20
|
|
|
20
|
|
2050
|
use Perl::Version; |
|
20
|
|
|
|
|
18759
|
|
|
20
|
|
|
|
|
536
|
|
7
|
20
|
|
|
20
|
|
9330
|
use Geoffrey::Exception::NotSupportedException; |
|
20
|
|
|
|
|
73
|
|
|
20
|
|
|
|
|
3945
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
$Geoffrey::Role::Converter::VERSION = '0.000203'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub new { |
12
|
58
|
|
|
58
|
1
|
6290
|
my $class = shift; |
13
|
58
|
|
|
|
|
181
|
my $self = {@_}; |
14
|
58
|
|
|
|
|
391
|
return bless $self, $class; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
sub add { |
18
|
2
|
|
|
2
|
1
|
13
|
return Geoffrey::Exception::NotSupportedException::throw_converter_type( 'add', shift ); |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub alter { |
22
|
3
|
|
|
3
|
1
|
18
|
return Geoffrey::Exception::NotSupportedException::throw_converter_type( 'alter', shift ); |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
sub append { |
26
|
1
|
|
|
1
|
1
|
54
|
return Geoffrey::Exception::NotSupportedException::throw_converter_type( 'append', shift ); |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
sub drop { |
30
|
12
|
|
|
12
|
1
|
46
|
return Geoffrey::Exception::NotSupportedException::throw_converter_type( 'drop', shift ); |
31
|
|
|
|
|
|
|
} |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
sub list { |
34
|
14
|
|
|
14
|
1
|
59
|
return Geoffrey::Exception::NotSupportedException::throw_converter_type( 'list', shift ); |
35
|
|
|
|
|
|
|
} |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
sub information { |
38
|
1
|
|
|
1
|
1
|
1541
|
return Geoffrey::Exception::NotSupportedException::throw_converter_type( 'information', |
39
|
|
|
|
|
|
|
shift ); |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
1; # End of Geoffrey::Role::ConverterType |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
__END__ |