line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package TAP::Parser::Result::Unknown; |
2
|
|
|
|
|
|
|
|
3
|
32
|
|
|
32
|
|
128
|
use strict; |
|
32
|
|
|
|
|
37
|
|
|
32
|
|
|
|
|
736
|
|
4
|
32
|
|
|
32
|
|
104
|
use warnings; |
|
32
|
|
|
|
|
30
|
|
|
32
|
|
|
|
|
747
|
|
5
|
|
|
|
|
|
|
|
6
|
32
|
|
|
32
|
|
114
|
use base 'TAP::Parser::Result'; |
|
32
|
|
|
|
|
32
|
|
|
32
|
|
|
|
|
2484
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
TAP::Parser::Result::Unknown - Unknown result token. |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Version 3.38 |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
our $VERSION = '3.38'; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 DESCRIPTION |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This is a subclass of L. A token of this class will be |
23
|
|
|
|
|
|
|
returned if the parser does not recognize the token line. For example: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1..5 |
26
|
|
|
|
|
|
|
VERSION 7 |
27
|
|
|
|
|
|
|
ok 1 - woo hooo! |
28
|
|
|
|
|
|
|
... woo hooo! is cool! |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
In the above "TAP", the second and fourth lines will generate "Unknown" |
31
|
|
|
|
|
|
|
tokens. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 OVERRIDDEN METHODS |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Mainly listed here to shut up the pitiful screams of the pod coverage tests. |
36
|
|
|
|
|
|
|
They keep me awake at night. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over 4 |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item * C |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item * C |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=back |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; |