line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package PPI::Token::QuoteLike::Command; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=pod |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
PPI::Token::QuoteLike::Command - The command quote-like operator |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 INHERITANCE |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
PPI::Token::QuoteLike::Command |
12
|
|
|
|
|
|
|
isa PPI::Token::QuoteLike |
13
|
|
|
|
|
|
|
isa PPI::Token |
14
|
|
|
|
|
|
|
isa PPI::Element |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 DESCRIPTION |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
A C object represents a command output |
19
|
|
|
|
|
|
|
capturing quote-like operator. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 METHODS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
There are no methods available for C |
24
|
|
|
|
|
|
|
beyond those provided by the parent L, L |
25
|
|
|
|
|
|
|
and L classes. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=cut |
28
|
|
|
|
|
|
|
|
29
|
65
|
|
|
65
|
|
354
|
use strict; |
|
65
|
|
|
|
|
110
|
|
|
65
|
|
|
|
|
1489
|
|
30
|
65
|
|
|
65
|
|
307
|
use PPI::Token::QuoteLike (); |
|
65
|
|
|
|
|
125
|
|
|
65
|
|
|
|
|
668
|
|
31
|
65
|
|
|
65
|
|
286
|
use PPI::Token::_QuoteEngine::Full (); |
|
65
|
|
|
|
|
93
|
|
|
65
|
|
|
|
|
3286
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
our $VERSION = '1.276'; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
our @ISA = qw{ |
36
|
|
|
|
|
|
|
PPI::Token::_QuoteEngine::Full |
37
|
|
|
|
|
|
|
PPI::Token::QuoteLike |
38
|
|
|
|
|
|
|
}; |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=pod |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SUPPORT |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
See the L in the main module. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 AUTHOR |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Adam Kennedy Eadamk@cpan.orgE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 COPYRIGHT |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Copyright 2001 - 2011 Adam Kennedy. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
This program is free software; you can redistribute |
57
|
|
|
|
|
|
|
it and/or modify it under the same terms as Perl itself. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The full text of the license can be found in the |
60
|
|
|
|
|
|
|
LICENSE file included with this module. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |