| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
5
|
|
|
5
|
|
2087
|
use strict; |
|
|
5
|
|
|
|
|
11
|
|
|
|
5
|
|
|
|
|
120
|
|
|
2
|
5
|
|
|
5
|
|
21
|
use warnings; |
|
|
5
|
|
|
|
|
8
|
|
|
|
5
|
|
|
|
|
186
|
|
|
3
|
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
package Footprintless::App::Command::overlay; |
|
5
|
|
|
|
|
|
|
$Footprintless::App::Command::overlay::VERSION = '1.26'; |
|
6
|
|
|
|
|
|
|
# ABSTRACT: Performs an action on an overlay. |
|
7
|
|
|
|
|
|
|
# PODNAME: Footprintless::App::Command::overlay |
|
8
|
|
|
|
|
|
|
|
|
9
|
5
|
|
|
5
|
|
28
|
use parent qw(Footprintless::App::ActionCommand); |
|
|
5
|
|
|
|
|
9
|
|
|
|
5
|
|
|
|
|
26
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub _actions { |
|
12
|
|
|
|
|
|
|
return ( |
|
13
|
2
|
|
|
2
|
|
10
|
'clean' => 'Footprintless::App::Command::overlay::clean', |
|
14
|
|
|
|
|
|
|
'initialize' => 'Footprintless::App::Command::overlay::initialize', |
|
15
|
|
|
|
|
|
|
'update' => 'Footprintless::App::Command::overlay::update' |
|
16
|
|
|
|
|
|
|
); |
|
17
|
|
|
|
|
|
|
} |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub _default_action { |
|
20
|
0
|
|
|
0
|
|
0
|
return 'update'; |
|
21
|
|
|
|
|
|
|
} |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub usage_desc { |
|
24
|
2
|
|
|
2
|
1
|
14
|
return "fpl overlay OVERLAY_COORD ACTION %o"; |
|
25
|
|
|
|
|
|
|
} |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__ |