File Coverage

blib/lib/HTML/Blitz/TokenType.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             # This code can be redistributed and modified under the terms of the GNU Affero
2             # General Public License as published by the Free Software Foundation, either
3             # version 3 of the License, or (at your option) any later version.
4             # See the "COPYING" file for details.
5             package HTML::Blitz::TokenType;
6 11     11   80 use HTML::Blitz::pragma;
  11         25  
  11         72  
7 11     11   4867 use Exporter qw(import);
  11         27  
  11         548  
8 11         132 use HTML::Blitz::Atom our @EXPORT_OK = qw(
9             TT_TAG_OPEN
10             TT_TAG_CLOSE
11             TT_TEXT
12             TT_COMMENT
13             TT_DOCTYPE
14 11     11   63 );
  11         25  
15              
16             our $VERSION = '0.07';
17              
18             1