| blib/lib/Data/DPath/Point.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 9 | 9 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 |
| pod | n/a | ||
| total | 12 | 12 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Data::DPath::Point; | ||||||
| 2 | our $AUTHORITY = 'cpan:SCHWIGON'; | ||||||
| 3 | # ABSTRACT: Abstraction for a single reference (a "point") in the datastructure | ||||||
| 4 | $Data::DPath::Point::VERSION = '0.57'; | ||||||
| 5 | 12 | 12 | 5969 | use strict; | |||
| 12 | 35 | ||||||
| 12 | 423 | ||||||
| 6 | 12 | 12 | 91 | use warnings; | |||
| 12 | 34 | ||||||
| 12 | 671 | ||||||
| 7 | |||||||
| 8 | use Class::XSAccessor # ::Array | ||||||
| 9 | 12 | 95 | chained => 1, | ||||
| 10 | constructor => 'new', | ||||||
| 11 | accessors => [qw( parent | ||||||
| 12 | attrs | ||||||
| 13 | ref | ||||||
| 14 | 12 | 12 | 457 | )]; | |||
| 12 | 2849 | ||||||
| 15 | |||||||
| 16 | 1; | ||||||
| 17 | |||||||
| 18 | __END__ |