line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# Module Parse::Yapp.pm. |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# Copyright © 1998, 1999, 2000, 2001, Francois Desarmenien. |
5
|
|
|
|
|
|
|
# Copyright © 2017 William N. Braswell, Jr. |
6
|
|
|
|
|
|
|
# All Rights Reserved. |
7
|
|
|
|
|
|
|
# |
8
|
|
|
|
|
|
|
# See the Copyright section at the end of the Parse/Yapp.pm pod section |
9
|
|
|
|
|
|
|
# for usage and distribution rights. |
10
|
|
|
|
|
|
|
# |
11
|
|
|
|
|
|
|
# |
12
|
|
|
|
|
|
|
package Parse::Yapp; |
13
|
|
|
|
|
|
|
|
14
|
3
|
|
|
3
|
|
1844
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
103
|
|
15
|
3
|
|
|
3
|
|
16
|
use vars qw($VERSION @ISA); |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
209
|
|
16
|
|
|
|
|
|
|
@ISA = qw(Parse::Yapp::Output); |
17
|
|
|
|
|
|
|
|
18
|
3
|
|
|
3
|
|
1327
|
use Parse::Yapp::Output; |
|
3
|
|
|
|
|
10
|
|
|
3
|
|
|
|
|
117
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# CORRELATION #py001: $VERSION must be changed in both Parse::Yapp & Parse::Yapp::Driver |
21
|
|
|
|
|
|
|
our $VERSION = '1.2'; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |