File Coverage

blib/lib/Embperl/Syntax/Embperl.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1              
2             ###################################################################################
3             #
4             # Embperl - Copyright (c) 1997-2008 Gerald Richter / ecos gmbh www.ecos.de
5             # Embperl - Copyright (c) 2008-2014 Gerald Richter
6             #
7             # You may distribute under the terms of either the GNU General Public
8             # License or the Artistic License, as specified in the Perl README file.
9             #
10             # THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
11             # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
12             # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13             #
14             # $Id: Embperl.pm 1578075 2014-03-16 14:01:14Z richter $
15             #
16             ###################################################################################
17            
18              
19              
20             package Embperl::Syntax::Embperl ;
21              
22 1     1   8 use Embperl::Syntax qw{:types} ;
  1         2  
  1         298  
23 1     1   1933 use Embperl::Syntax::EmbperlHTML ;
  1         3  
  1         35  
24 1     1   2266 use Embperl::Syntax::EmbperlBlocks ;
  1         3  
  1         95  
25              
26             @ISA = qw(Embperl::Syntax::EmbperlBlocks Embperl::Syntax::EmbperlHTML) ;
27              
28              
29             ###################################################################################
30             #
31             # Methods
32             #
33             ###################################################################################
34              
35             # ---------------------------------------------------------------------------------
36             #
37             # Create new Syntax Object
38             #
39             # ---------------------------------------------------------------------------------
40              
41             sub new
42              
43             {
44 1     1 1 2 my $class = shift ;
45            
46 1         7 my $self = Embperl::Syntax::EmbperlBlocks::new ($class) ;
47 1         4 Embperl::Syntax::EmbperlHTML::new ($self) ;
48              
49 1         5 return $self ;
50             }
51              
52              
53             1 ;
54             __END__