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   2143 use strict;
  8         17  
  8         248  
4 8     8   41 use warnings;
  8         14  
  8         191  
5 8     8   140 use 5.008004;
  8         30  
6 8     8   2614 use Wasm::Wasmtime::Caller;
  8         23  
  8         474  
7 8     8   54 use Wasm::Wasmtime::Config;
  8         19  
  8         210  
8 8     8   41 use Wasm::Wasmtime::Engine;
  8         28  
  8         202  
9 8     8   3574 use Wasm::Wasmtime::ExportType;
  8         49  
  8         270  
10 8     8   54 use Wasm::Wasmtime::Extern;
  8         18  
  8         166  
11 8     8   41 use Wasm::Wasmtime::ExternType;
  8         29  
  8         190  
12 8     8   47 use Wasm::Wasmtime::Func;
  8         27  
  8         263  
13 8     8   47 use Wasm::Wasmtime::FuncType;
  8         22  
  8         200  
14 8     8   53 use Wasm::Wasmtime::Global;
  8         24  
  8         223  
15 8     8   42 use Wasm::Wasmtime::GlobalType;
  8         15  
  8         211  
16 8     8   3676 use Wasm::Wasmtime::ImportType;
  8         24  
  8         318  
17 8     8   3707 use Wasm::Wasmtime::Instance;
  8         28  
  8         364  
18 8     8   3798 use Wasm::Wasmtime::Linker;
  8         28  
  8         331  
19 8     8   56 use Wasm::Wasmtime::Module;
  8         17  
  8         168  
20 8     8   50 use Wasm::Wasmtime::Store;
  8         16  
  8         167  
21 8     8   40 use Wasm::Wasmtime::TableType;
  8         18  
  8         166  
22 8     8   55 use Wasm::Wasmtime::Trap;
  8         25  
  8         206  
23 8     8   65 use Wasm::Wasmtime::ValType;
  8         19  
  8         234  
24 8     8   51 use Wasm::Wasmtime::WasiConfig;
  8         17  
  8         248  
25 8     8   44 use Wasm::Wasmtime::WasiInstance;
  8         34  
  8         387  
26              
27             # ABSTRACT: Perl interface to Wasmtime
28             our $VERSION = '0.23'; # VERSION
29              
30              
31             1;
32              
33             __END__