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   1874 use strict;
  8         19  
  8         251  
4 8     8   49 use warnings;
  8         19  
  8         216  
5 8     8   152 use 5.008004;
  8         27  
6 8     8   2606 use Wasm::Wasmtime::Caller;
  8         24  
  8         476  
7 8     8   58 use Wasm::Wasmtime::Config;
  8         15  
  8         205  
8 8     8   42 use Wasm::Wasmtime::Engine;
  8         16  
  8         187  
9 8     8   3752 use Wasm::Wasmtime::ExportType;
  8         24  
  8         291  
10 8     8   60 use Wasm::Wasmtime::Extern;
  8         20  
  8         179  
11 8     8   43 use Wasm::Wasmtime::ExternType;
  8         18  
  8         179  
12 8     8   67 use Wasm::Wasmtime::Func;
  8         20  
  8         231  
13 8     8   45 use Wasm::Wasmtime::FuncType;
  8         16  
  8         224  
14 8     8   45 use Wasm::Wasmtime::Global;
  8         15  
  8         244  
15 8     8   44 use Wasm::Wasmtime::GlobalType;
  8         15  
  8         192  
16 8     8   3935 use Wasm::Wasmtime::ImportType;
  8         28  
  8         284  
17 8     8   3634 use Wasm::Wasmtime::Instance;
  8         24  
  8         286  
18 8     8   3696 use Wasm::Wasmtime::Linker;
  8         29  
  8         322  
19 8     8   64 use Wasm::Wasmtime::Module;
  8         17  
  8         190  
20 8     8   55 use Wasm::Wasmtime::Store;
  8         18  
  8         188  
21 8     8   42 use Wasm::Wasmtime::TableType;
  8         15  
  8         153  
22 8     8   36 use Wasm::Wasmtime::Trap;
  8         16  
  8         137  
23 8     8   38 use Wasm::Wasmtime::ValType;
  8         15  
  8         196  
24 8     8   42 use Wasm::Wasmtime::WasiConfig;
  8         15  
  8         224  
25 8     8   44 use Wasm::Wasmtime::WasiInstance;
  8         16  
  8         372  
26              
27             # ABSTRACT: Perl interface to Wasmtime
28             our $VERSION = '0.21'; # VERSION
29              
30              
31             1;
32              
33             __END__