line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package MDOM::Token::Separator; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=pod |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
MDOM::Token::Separator - Makefile separators like colons and leading tabs |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 INHERITANCE |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
MDOM::Token::Separator |
12
|
|
|
|
|
|
|
isa MDOM::Token::Word |
13
|
|
|
|
|
|
|
isa MDOM::Token |
14
|
|
|
|
|
|
|
isa MDOM::Element |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 DESCRIPTION |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 METHODS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
This class has no methods beyond what is provided by its |
21
|
|
|
|
|
|
|
L, L and L |
22
|
|
|
|
|
|
|
parent classes. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=cut |
25
|
|
|
|
|
|
|
|
26
|
17
|
|
|
17
|
|
73
|
use strict; |
|
17
|
|
|
|
|
27
|
|
|
17
|
|
|
|
|
588
|
|
27
|
17
|
|
|
17
|
|
76
|
use base 'MDOM::Token'; |
|
17
|
|
|
|
|
24
|
|
|
17
|
|
|
|
|
214
|
|
28
|
|
|
|
|
|
|
|
29
|
17
|
|
|
17
|
|
134
|
use vars qw{$VERSION}; |
|
17
|
|
|
|
|
44
|
|
|
17
|
|
|
|
|
794
|
|
30
|
|
|
|
|
|
|
BEGIN { |
31
|
17
|
|
|
17
|
|
382
|
$VERSION = '0.008'; |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=pod |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 SUPPORT |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
See the L in the main module. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 AUTHOR |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Adam Kennedy Eadamk@cpan.orgE |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 COPYRIGHT |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Copyright 2001 - 2006 Adam Kennedy. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This program is free software; you can redistribute |
51
|
|
|
|
|
|
|
it and/or modify it under the same terms as Perl itself. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The full text of the license can be found in the |
54
|
|
|
|
|
|
|
LICENSE file included with this module. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |