File Coverage

blib/lib/Parse/Yapp.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


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   1129 use strict;
  3         7  
  3         119  
15 3     3   19 use vars qw($VERSION @ISA);
  3         7  
  3         269  
16             @ISA = qw(Parse::Yapp::Output);
17              
18 3     3   890 use Parse::Yapp::Output;
  3         12  
  3         163  
19              
20             # CORRELATION #py001: $VERSION must be changed in both Parse::Yapp & Parse::Yapp::Driver
21             our $VERSION = '1.21';
22              
23             1;
24              
25             __END__