File Coverage

blib/lib/SpeL/Object/MathElement.pm
Criterion Covered Total %
statement 36 36 100.0
branch n/a
condition n/a
subroutine 12 12 100.0
pod n/a
total 48 48 100.0


line stmt bran cond sub pod time code
1             # -*- cperl -*-
2             # ABSTRACT: LaTeX mathelement object
3              
4              
5 41     41   256 use strict;
  41         103  
  41         1808  
6 41     41   230 use warnings;
  41         97  
  41         4491  
7             package SpeL::Object::MathElement;
8              
9 41     41   24585 use SpeL::Object::Command;
  41         193  
  41         3135  
10 41     41   22057 use SpeL::Object::Function;
  41         123  
  41         2164  
11 41     41   267 use SpeL::Object::Squareroot;
  41         107  
  41         1393  
12 41     41   20100 use SpeL::Object::Variable;
  41         131  
  41         2101  
13 41     41   18838 use SpeL::Object::Realnumber;
  41         157  
  41         2181  
14 41     41   20009 use SpeL::Object::Limitsexpression;
  41         159  
  41         2165  
15 41     41   17119 use SpeL::Object::MathGroup;
  41         130  
  41         2124  
16              
17 41     41   235 use parent 'Exporter';
  41         76  
  41         198  
18 41     41   2509 use Carp;
  41         83  
  41         2142  
19              
20 41     41   251 use Data::Dumper;
  41         75  
  41         2052  
21              
22              
23              
24             1;
25              
26             __END__