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
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   83 use HTML::Blitz::pragma;
  11         24  
  11         71  
7 11     11   4790 use Exporter qw(import);
  11         28  
  11         546  
8 11         76 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   65 );
  11         23  
15              
16             our $VERSION = '0.09';
17              
18             1