Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / PPI / Token / QuoteLike / Command.pm
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<PPI::Token::QuoteLike::Command> object represents a command output
19 capturing quote-like operator.
20
21 =head1 METHODS
22
23 There are no methods available for C<PPI::Token::QuoteLike::Command>
24 beyond those provided by the parent L<PPI::Token::QuoteLike>, L<PPI::Token>
25 and L<PPI::Element> classes.
26
27 Got any ideas for methods? Submit a report to rt.cpan.org!
28
29 =cut
30
31 use strict;
32 use PPI::Token::QuoteLike          ();
33 use PPI::Token::_QuoteEngine::Full ();
34
35 use vars qw{$VERSION @ISA};
36 BEGIN {
37         $VERSION = '1.206';
38         @ISA     = qw{
39                 PPI::Token::_QuoteEngine::Full
40                 PPI::Token::QuoteLike
41         };
42 }
43
44 1;
45
46 =pod
47
48 =head1 SUPPORT
49
50 See the L<support section|PPI/SUPPORT> in the main module.
51
52 =head1 AUTHOR
53
54 Adam Kennedy E<lt>adamk@cpan.orgE<gt>
55
56 =head1 COPYRIGHT
57
58 Copyright 2001 - 2009 Adam Kennedy.
59
60 This program is free software; you can redistribute
61 it and/or modify it under the same terms as Perl itself.
62
63 The full text of the license can be found in the
64 LICENSE file included with this module.
65
66 =cut