File Coverage

lib/SIRTX/VM.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             # Copyright (c) 2024 Philipp Schafft
2              
3             # licensed under Artistic License 2.0 (see LICENSE file)
4              
5             # ABSTRACT: module for interacting with SIRTX VM code
6              
7              
8             package SIRTX::VM;
9              
10 1     1   376223 use v5.16;
  1         4  
11 1     1   8 use strict;
  1         2  
  1         34  
12 1     1   5 use warnings;
  1         2  
  1         83  
13              
14 1     1   6 use Carp;
  1         3  
  1         109  
15              
16 1     1   9 use parent 'Data::Identifier::Interface::Userdata';
  1         1  
  1         10  
17              
18             our $VERSION = v0.12;
19              
20             1;
21              
22             __END__