line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Pod::Simple::PullParserTextToken; |
2
|
10
|
|
|
10
|
|
64
|
use strict; |
|
10
|
|
|
|
|
20
|
|
|
10
|
|
|
|
|
273
|
|
3
|
10
|
|
|
10
|
|
49
|
use warnings; |
|
10
|
|
|
|
|
20
|
|
|
10
|
|
|
|
|
217
|
|
4
|
10
|
|
|
10
|
|
49
|
use Pod::Simple::PullParserToken (); |
|
10
|
|
|
|
|
19
|
|
|
10
|
|
|
|
|
1503
|
|
5
|
|
|
|
|
|
|
our @ISA = ('Pod::Simple::PullParserToken'); |
6
|
|
|
|
|
|
|
our $VERSION = '3.45'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub new { # Class->new(text); |
9
|
243
|
|
|
243
|
0
|
386
|
my $class = shift; |
10
|
243
|
|
33
|
|
|
1245
|
return bless ['text', @_], ref($class) || $class; |
11
|
|
|
|
|
|
|
} |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# Purely accessors: |
14
|
|
|
|
|
|
|
|
15
|
317
|
50
|
|
317
|
1
|
1349
|
sub text { (@_ == 2) ? ($_[0][1] = $_[1]) : $_[0][1] } |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
1
|
2
|
sub text_r { \ $_[0][1] } |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |