| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package IO::Capture::Stderr::Extended; |
|
2
|
1
|
|
|
1
|
|
26721
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
35
|
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
30
|
|
|
4
|
1
|
|
|
1
|
|
6
|
use base 'IO::Capture::Stderr'; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
284146
|
|
|
5
|
1
|
|
|
1
|
|
545269
|
use IO::Capture::Extended qw(:all); |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
232
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
1; |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
########## DOCUMENTATION ########## |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
IO::Capture::Stderr::Extended - Extend functionality of IO::Capture::Stderr |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
All documentation is contained in IO::Capture::Extended::Overview. |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
perldoc IO::Capture::Extended::Overview |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
|
22
|
|
|
|
|
|
|
|