line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTML::TreeBuilderX::ASP_NET::Types; |
2
|
5
|
|
|
5
|
|
8316999
|
use strict; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
195
|
|
3
|
5
|
|
|
5
|
|
26
|
use warnings; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
191
|
|
4
|
|
|
|
|
|
|
|
5
|
5
|
|
|
5
|
|
5595
|
use MooseX::Types -declare => [qw( htmlAnchorTag htmlFormTag HTMLElement )]; |
|
5
|
|
|
|
|
245534
|
|
|
5
|
|
|
|
|
56
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
class_type HTMLElement, { class => 'HTML::Element' }; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
subtype htmlAnchorTag |
10
|
|
|
|
|
|
|
, as HTMLElement |
11
|
|
|
|
|
|
|
, where { $_->tag eq 'a' } |
12
|
|
|
|
|
|
|
; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
subtype htmlFormTag |
15
|
|
|
|
|
|
|
, as HTMLElement |
16
|
|
|
|
|
|
|
, where { $_->tag eq 'form' } |
17
|
|
|
|
|
|
|
; |
18
|
|
|
|
|
|
|
|
19
|
5
|
|
|
5
|
|
27687
|
no MooseX::Types; |
|
5
|
|
|
|
|
13
|
|
|
5
|
|
|
|
|
256
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |