File Coverage

blib/lib/JavaScript/Code/Hash.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package JavaScript::Code::Hash;
2            
3 2     2   11 use strict;
  2         4  
  2         72  
4 2     2   9 use vars qw[ $VERSION ];
  2         4  
  2         78  
5 2     2   9 use base qw[ JavaScript::Code::Type ];
  2         3  
  2         308  
6            
7             $VERSION = '0.08';
8            
9             =head1 NAME
10            
11             JavaScript::Code::Element - A JavaScript Hash
12            
13             =head1 DESCRIPTION
14            
15             =head1 METHODS
16            
17             =head2 new
18            
19             =head2 $self->type( )
20            
21             =cut
22            
23             sub type {
24 0     0 1   return "Hash";
25             }
26            
27             =head2 $self->output( )
28            
29             =cut
30            
31             sub output {
32 0     0 1   die "Not yet implemented.";
33             }
34            
35             =head1 SEE ALSO
36            
37             L
38            
39             =head1 AUTHOR
40            
41             Sascha Kiefer, C
42            
43             =head1 LICENSE
44            
45             This library is free software, you can redistribute it and/or modify it under
46             the same terms as Perl itself.
47            
48             =cut
49            
50             1;