File Coverage

blib/lib/Perl/ToPerl6/Exception/Parse.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 31 31 100.0


line stmt bran cond sub pod time code
1             package Perl::ToPerl6::Exception::Parse;
2              
3 1     1   17 use 5.006001;
  1         3  
4 1     1   5 use strict;
  1         2  
  1         18  
5 1     1   4 use warnings;
  1         2  
  1         36  
6              
7 1     1   4 use English qw< -no_match_vars >;
  1         2  
  1         5  
8 1     1   405 use Carp qw< confess >;
  1         1  
  1         35  
9 1     1   4 use Readonly;
  1         2  
  1         36  
10              
11 1     1   4 use Perl::ToPerl6::Utils qw< :characters >;
  1         2  
  1         42  
12              
13             #-----------------------------------------------------------------------------
14              
15             use Exception::Class (
16 1         10 'Perl::ToPerl6::Exception::Parse' => {
17             isa => 'Perl::ToPerl6::Exception',
18             description => 'A problem parsing source code.',
19             fields => [ qw< file_name > ],
20             alias => 'throw_parse',
21             },
22 1     1   213 );
  1         2  
23              
24             #-----------------------------------------------------------------------------
25              
26             Readonly::Array our @EXPORT_OK => qw< throw_parse >;
27              
28             #-----------------------------------------------------------------------------
29              
30             1;
31              
32             #-----------------------------------------------------------------------------
33              
34             __END__
35              
36             =pod
37              
38             =for stopwords
39              
40             =head1 NAME
41              
42             Perl::ToPerl6::Exception::Parse - The code doesn't look like code.
43              
44             =head1 DESCRIPTION
45              
46             There was a problem with PPI parsing source code.
47              
48              
49             =head1 INTERFACE SUPPORT
50              
51             This is considered to be a public class. Any changes to its interface
52             will go through a deprecation cycle.
53              
54              
55             =head1 METHODS
56              
57             =over
58              
59             =item C<file_name()>
60              
61             Returns the name of the file that the problem was found with, if available.
62              
63              
64             =back
65              
66              
67             =head1 AUTHOR
68              
69             Elliot Shank <perl@galumph.com>
70              
71             =head1 COPYRIGHT
72              
73             Copyright (c) 2008-2011 Elliot Shank.
74              
75             This program is free software; you can redistribute it and/or modify
76             it under the same terms as Perl itself. The full text of this license
77             can be found in the LICENSE file included with this module.
78              
79             =cut
80              
81             ##############################################################################
82             # Local Variables:
83             # mode: cperl
84             # cperl-indent-level: 4
85             # fill-column: 78
86             # indent-tabs-mode: nil
87             # c-indentation-style: bsd
88             # End:
89             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :