line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::NamespaceRoulette; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
23872
|
use 5.008000; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
40
|
|
4
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
46
|
|
5
|
1
|
|
|
1
|
|
5
|
no strict 'refs'; |
|
1
|
|
|
|
|
12
|
|
|
1
|
|
|
|
|
22
|
|
6
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
72
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
require Exporter; |
9
|
|
|
|
|
|
|
our @ISA = qw(Exporter); |
10
|
|
|
|
|
|
|
our @EXPORT = qw(AUTOLOAD); |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
2127
|
use Symbol; |
|
1
|
|
|
|
|
1144
|
|
|
1
|
|
|
|
|
105
|
|
13
|
1
|
|
|
1
|
|
1088
|
use POSIX; |
|
1
|
|
|
|
|
7779
|
|
|
1
|
|
|
|
|
8
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
our $VERSION = '3.45'; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
sub AUTOLOAD { |
18
|
0
|
|
|
0
|
|
|
my @names = grep { /^(?:\w+|\w+::\w+)$/ } keys %::; |
|
0
|
|
|
|
|
|
|
19
|
0
|
|
|
|
|
|
my $rand = qualify( $names[ rand @names ] ); |
20
|
0
|
|
|
|
|
|
$rand =~ s/Acme::NamespaceRoulette/main/; |
21
|
0
|
|
|
|
|
|
goto &$rand; |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
25
|
|
|
|
|
|
|
__END__ |