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 object represents a command output
19             capturing quote.
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   486 use strict;
  65         128  
  65         1923  
30 65     65   28360 use PPI::Token::QuoteLike ();
  65         199  
  65         1384  
31 65     65   419 use PPI::Token::_QuoteEngine::Simple ();
  65         145  
  65         6271  
32              
33             our $VERSION = '1.277';
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 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