File Coverage

blib/lib/Statistics/R/REXP/Expression.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 1 1 100.0
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Statistics::R::REXP::Expression;
2             # ABSTRACT: an R expression vector
3             $Statistics::R::REXP::Expression::VERSION = '1.0';
4 9     9   63656 use 5.010;
  9         19  
5              
6 9     9   30 use Scalar::Util qw(blessed);
  9         12  
  9         348  
7              
8 9     9   447 use Class::Tiny::Antlers;
  9         3921  
  9         43  
9 9     9   1132 use namespace::clean;
  9         9761  
  9         38  
10              
11             extends 'Statistics::R::REXP::List';
12              
13 9     9   1067 use constant sexptype => 'EXPRSXP';
  9         15  
  9         831  
14              
15             sub to_pl {
16 5     5 1 521 Statistics::R::REXP::Vector::to_pl(@_)
17             }
18              
19 6     6   13 sub _type { 'expression' };
20              
21              
22             1; # End of Statistics::R::REXP::Expression
23              
24             __END__