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.0001';
4 10     10   63339 use 5.010;
  10         21  
5              
6 10     10   36 use Scalar::Util qw(blessed);
  10         18  
  10         411  
7              
8 10     10   468 use Class::Tiny::Antlers;
  10         3975  
  10         47  
9 10     10   1235 use namespace::clean;
  10         9427  
  10         42  
10              
11             extends 'Statistics::R::REXP::List';
12              
13 10     10   1226 use constant sexptype => 'EXPRSXP';
  10         24  
  10         891  
14              
15             sub to_pl {
16 5     5 1 358 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__