File Coverage

blib/lib/PPI/Token/QuoteLike/Backtick.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package PPI::Token::QuoteLike::Backtick;
2              
3             =pod
4              
5             =head1 NAME
6              
7             PPI::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              
18             A C<PPI::Token::QuoteLike::Backtick> object represents a command output
19             capturing quote.
20              
21             =head1 METHODS
22              
23             There are no methods available for C<PPI::Token::QuoteLike::Backtick>
24             beyond those provided by the parent L<PPI::Token::QuoteLike>, L<PPI::Token>
25             and L<PPI::Element> classes.
26              
27             =cut
28              
29 67     67   335 use strict;
  67         109  
  67         2068  
30 67     67   22756 use PPI::Token::QuoteLike ();
  67         168  
  67         1166  
31 67     67   302 use PPI::Token::_QuoteEngine::Simple ();
  67         103  
  67         2804  
32              
33             our $VERSION = '1.284';
34              
35             our @ISA = qw{
36             PPI::Token::_QuoteEngine::Simple
37             PPI::Token::QuoteLike
38             };
39              
40             1;
41              
42             =pod
43              
44             =head1 SUPPORT
45              
46             See the L<support section|PPI/SUPPORT> in the main module.
47              
48             =head1 AUTHOR
49              
50             Adam Kennedy E<lt>adamk@cpan.orgE<gt>
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