blib/lib/Data/Rx/CoreType.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 13 | 13 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 18 | 19 | 94.7 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 1 | 1 | 339 | use strict; | |||
1 | 2 | ||||||
1 | 60 | ||||||
2 | 1 | 1 | 3 | use warnings; | |||
1 | 1 | ||||||
1 | 36 | ||||||
3 | package Data::Rx::CoreType; | ||||||
4 | # ABSTRACT: base class for core Rx types | ||||||
5 | $Data::Rx::CoreType::VERSION = '0.200007'; | ||||||
6 | 1 | 1 | 3 | use parent 'Data::Rx::CommonType::EasyNew'; | |||
1 | 1 | ||||||
1 | 4 | ||||||
7 | |||||||
8 | 1 | 1 | 53 | use Carp (); | |||
1 | 1 | ||||||
1 | 32 | ||||||
9 | |||||||
10 | sub type_uri { | ||||||
11 | 756 | 756 | 0 | 2002 | sprintf 'tag:codesimply.com,2008:rx/core/%s', $_[0]->subname | ||
12 | } | ||||||
13 | |||||||
14 | 1; | ||||||
15 | |||||||
16 | __END__ |