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