blib/lib/Data/Rx/CoreType.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 17 | 18 | 94.4 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 1 | 1 | 459 | use v5.12.0; | |||
1 | 3 | ||||||
2 | 1 | 1 | 6 | use warnings; | |||
1 | 2 | ||||||
1 | 45 | ||||||
3 | package Data::Rx::CoreType 0.200008; | ||||||
4 | # ABSTRACT: base class for core Rx types | ||||||
5 | |||||||
6 | 1 | 1 | 6 | use parent 'Data::Rx::CommonType::EasyNew'; | |||
1 | 1 | ||||||
1 | 16 | ||||||
7 | |||||||
8 | 1 | 1 | 41 | use Carp (); | |||
1 | 2 | ||||||
1 | 51 | ||||||
9 | |||||||
10 | sub type_uri { | ||||||
11 | 980 | 980 | 0 | 3312 | sprintf 'tag:codesimply.com,2008:rx/core/%s', $_[0]->subname | ||
12 | } | ||||||
13 | |||||||
14 | 1; | ||||||
15 | |||||||
16 | __END__ |