File Coverage

corpus/wasm__linker/lib/Foo/Bar/X3.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Foo::Bar::X3;
2              
3 1     1   6 use strict;
  1         4  
  1         36  
4 1     1   5 use warnings;
  1         2  
  1         59  
5             use Wasm
6 1         10 -api => 0,
7 1     1   6 -global => [ 'x3', 'i32', 'var', 42];
  1         2  
8              
9             sub hello
10             {
11 1     1 0 61 print "hello, world!\n";
12             }
13              
14             1;