| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package CLI::Osprey::Descriptive; |
|
2
|
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
25
|
use strict; |
|
|
4
|
|
|
|
|
6
|
|
|
|
4
|
|
|
|
|
161
|
|
|
4
|
4
|
|
|
4
|
|
19
|
use warnings; |
|
|
4
|
|
|
|
|
6
|
|
|
|
4
|
|
|
|
|
482
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: Getopt::Long::Descriptive subclass for CLI::Osprey use |
|
7
|
|
|
|
|
|
|
our $VERSION = '0.09'; # VERSION |
|
8
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY |
|
9
|
|
|
|
|
|
|
|
|
10
|
4
|
|
|
4
|
|
3050
|
use Getopt::Long::Descriptive 0.100; |
|
|
4
|
|
|
|
|
216315
|
|
|
|
4
|
|
|
|
|
26
|
|
|
11
|
4
|
|
|
4
|
|
4307
|
use CLI::Osprey::Descriptive::Usage; |
|
|
4
|
|
|
|
|
20
|
|
|
|
4
|
|
|
|
|
481
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our @ISA = ('Getopt::Long::Descriptive'); |
|
14
|
|
|
|
|
|
|
|
|
15
|
40
|
|
|
40
|
1
|
13052
|
sub usage_class { 'CLI::Osprey::Descriptive::Usage' } |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |