line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#!perl -w |
2
|
|
|
|
|
|
|
package version::vxs; |
3
|
|
|
|
|
|
|
|
4
|
11
|
|
|
11
|
|
146
|
use v5.10; |
|
11
|
|
|
|
|
64
|
|
5
|
11
|
|
|
11
|
|
56
|
use strict; |
|
11
|
|
|
|
|
20
|
|
|
11
|
|
|
|
|
1679
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = 0.9929; |
8
|
|
|
|
|
|
|
our $CLASS = 'version::vxs'; |
9
|
|
|
|
|
|
|
our @ISA; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
eval { |
12
|
|
|
|
|
|
|
require XSLoader; |
13
|
|
|
|
|
|
|
local $^W; # shut up the 'redefined' warning for UNIVERSAL::VERSION |
14
|
|
|
|
|
|
|
XSLoader::load('version::vxs', $VERSION); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
} or do { |
17
|
|
|
|
|
|
|
require DynaLoader; |
18
|
|
|
|
|
|
|
push @ISA, 'DynaLoader'; |
19
|
|
|
|
|
|
|
local $^W; # shut up the 'redefined' warning for UNIVERSAL::VERSION |
20
|
|
|
|
|
|
|
bootstrap version::vxs $VERSION; |
21
|
|
|
|
|
|
|
}; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# Preloaded methods go here. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |