File Coverage

blib/lib/Data/Annotation/Util.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Data::Annotation::Util;
2 2     2   3998 use v5.24;
  2         10  
3 2     2   37 use experimental qw< signatures >;
  2         6  
  2         16  
4 2     2   1031 use Data::Annotation::Overlay;
  2         10  
  2         97  
5 2     2   16 use Exporter qw< import >;
  2         4  
  2         381  
6             our @EXPORT_OK = qw< o overlay >;
7              
8 2     2 1 252591 sub o { Data::Annotation::Overlay->new(under => @_) }
9              
10             *{overlay} = \&o;
11              
12             1;