File Coverage

blib/lib/PPI/Token/QuoteLike/Command.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::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 64     64   353 use strict;
  64         101  
  64         1440  
30 64     64   285 use PPI::Token::QuoteLike ();
  64         104  
  64         648  
31 64     64   227 use PPI::Token::_QuoteEngine::Full ();
  64         110  
  64         3544  
32              
33             our $VERSION = '1.275';
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