File Coverage

blib/lib/Lingy/Compiler.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package Lingy::Compiler;
2 1     1   935 use Lingy::Base;
  1         1  
  1         6  
3              
4             has input => ();
5             has ast => sub { Lingy::AST->new };
6              
7 1     1   306 use Lingy::AST;
  1         3  
  1         54  
8              
9             sub compile {
10 0     0 0   die "compile() method not implemented";
11             }
12              
13             1;