File Coverage

blib/lib/Wasm/Wasmtime.pm
Criterion Covered Total %
statement 68 68 100.0
branch n/a
condition n/a
subroutine 23 23 100.0
pod n/a
total 91 91 100.0


line stmt bran cond sub pod time code
1             package Wasm::Wasmtime;
2              
3 8     8   1908 use strict;
  8         19  
  8         289  
4 8     8   46 use warnings;
  8         18  
  8         203  
5 8     8   140 use 5.008004;
  8         30  
6 8     8   3061 use Wasm::Wasmtime::Caller;
  8         30  
  8         484  
7 8     8   62 use Wasm::Wasmtime::Config;
  8         17  
  8         190  
8 8     8   38 use Wasm::Wasmtime::Engine;
  8         17  
  8         179  
9 8     8   3661 use Wasm::Wasmtime::ExportType;
  8         25  
  8         286  
10 8     8   81 use Wasm::Wasmtime::Extern;
  8         22  
  8         167  
11 8     8   41 use Wasm::Wasmtime::ExternType;
  8         21  
  8         220  
12 8     8   45 use Wasm::Wasmtime::Func;
  8         25  
  8         265  
13 8     8   46 use Wasm::Wasmtime::FuncType;
  8         32  
  8         194  
14 8     8   52 use Wasm::Wasmtime::Global;
  8         18  
  8         227  
15 8     8   48 use Wasm::Wasmtime::GlobalType;
  8         34  
  8         223  
16 8     8   3713 use Wasm::Wasmtime::ImportType;
  8         129  
  8         318  
17 8     8   3812 use Wasm::Wasmtime::Instance;
  8         28  
  8         371  
18 8     8   3672 use Wasm::Wasmtime::Linker;
  8         40  
  8         316  
19 8     8   57 use Wasm::Wasmtime::Module;
  8         18  
  8         239  
20 8     8   48 use Wasm::Wasmtime::Store;
  8         17  
  8         184  
21 8     8   42 use Wasm::Wasmtime::TableType;
  8         17  
  8         161  
22 8     8   61 use Wasm::Wasmtime::Trap;
  8         16  
  8         213  
23 8     8   49 use Wasm::Wasmtime::ValType;
  8         15  
  8         167  
24 8     8   47 use Wasm::Wasmtime::WasiConfig;
  8         17  
  8         260  
25 8     8   48 use Wasm::Wasmtime::WasiInstance;
  8         17  
  8         392  
26              
27             # ABSTRACT: Perl interface to Wasmtime
28             our $VERSION = '0.22'; # VERSION
29              
30              
31             1;
32              
33             __END__