line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package |
2
|
|
|
|
|
|
|
Twitter::Text::Util; # hide from PAUSE |
3
|
4
|
|
|
4
|
|
668698
|
use strict; |
|
4
|
|
|
|
|
22
|
|
|
4
|
|
|
|
|
105
|
|
4
|
4
|
|
|
4
|
|
19
|
use warnings; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
125
|
|
5
|
4
|
|
|
4
|
|
17
|
no if $^V lt v5.13.9, 'warnings', 'utf8'; ## no critic (ValuesAndExpressions::ProhibitMismatchedOperators) |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
44
|
|
6
|
4
|
|
|
4
|
|
146
|
use Exporter 'import'; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
131
|
|
7
|
4
|
|
|
4
|
|
1242
|
use File::Share qw(dist_file); |
|
4
|
|
|
|
|
76733
|
|
|
4
|
|
|
|
|
208
|
|
8
|
4
|
|
|
4
|
|
1984
|
use YAML::PP (); |
|
4
|
|
|
|
|
232767
|
|
|
4
|
|
|
|
|
381
|
|
9
|
|
|
|
|
|
|
our @EXPORT = qw( |
10
|
|
|
|
|
|
|
load_yaml |
11
|
|
|
|
|
|
|
); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# internal use only, do not use this module directly. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub load_yaml { |
16
|
7
|
|
|
7
|
0
|
302
|
my $yamlname = shift; |
17
|
|
|
|
|
|
|
|
18
|
7
|
|
|
|
|
60
|
return [ YAML::PP::LoadFile(dist_file('Twitter-Text', "conformance/$yamlname")) ]; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |