line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Data::Dumper::HTML; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
21920
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
45
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
31
|
|
5
|
1
|
|
|
1
|
|
740
|
use version;our $VERSION = qv('0.0.2'); |
|
1
|
|
|
|
|
1967
|
|
|
1
|
|
|
|
|
5
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
65
|
use base 'Exporter'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
128
|
|
8
|
|
|
|
|
|
|
our @EXPORT_OK = qw(DumperHTML dumper_html); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
999
|
use Data::Dumper; |
|
1
|
|
|
|
|
11620
|
|
|
1
|
|
|
|
|
85
|
|
11
|
1
|
|
|
1
|
|
865
|
use Text::InHTML; |
|
1
|
|
|
|
|
846
|
|
|
1
|
|
|
|
|
5
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our ($shu_hr, $tabs); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub Data::Dumper::dump_html { |
16
|
0
|
|
|
0
|
0
|
|
my $dd = shift; |
17
|
0
|
|
|
|
|
|
Text::InHTML::encode_perl( join("\n", $dd->Dump(@_)), $shu_hr, $tabs ); |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
sub Data::Dumper::DumpHTML { |
21
|
0
|
|
|
0
|
0
|
|
goto &Data::Dumper::dump_html; |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
sub dumper_html { |
25
|
0
|
|
|
0
|
0
|
|
Text::InHTML::encode_perl( join("\n", Data::Dumper::Dumper(@_)), $shu_hr, $tabs ); |
26
|
|
|
|
|
|
|
} |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
sub DumperHTML { |
29
|
0
|
|
|
0
|
0
|
|
goto &dumper_html; |
30
|
|
|
|
|
|
|
} |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
__END__ |