Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / PPI / Statement / End.pm
CommitLineData
3fea05b9 1package PPI::Statement::End;
2
3=pod
4
5=head1 NAME
6
7PPI::Statement::End - Content after the __END__ of a module
8
9=head1 SYNOPSIS
10
11 # This is normal content
12
13 __END__
14
15 This is part of an PPI::Statement::End statement
16
17 =pod
18
19 This is not part of the ::End statement, it's POD
20
21 =cut
22
23 This is another PPI::Statement::End statement
24
25=head1 INHERITANCE
26
27 PPI::Statement::End
28 isa PPI::Statement
29 isa PPI::Node
30 isa PPI::Element
31
32=head1 DESCRIPTION
33
34C<PPI::Statement::End> is a utility class designed to serve as a contained
35for all of the content after the __END__ tag in a file.
36
37It doesn't cover the ENTIRE of the __END__ section, and can be interspersed
38with L<PPI::Token::Pod> tokens.
39
40=head1 METHODS
41
42C<PPI::Statement::End> has no additional methods beyond the default ones
43provided by L<PPI::Statement>, L<PPI::Node> and L<PPI::Element>.
44
45=cut
46
47use strict;
48use PPI::Statement ();
49
50use vars qw{$VERSION @ISA};
51BEGIN {
52 $VERSION = '1.206';
53 @ISA = 'PPI::Statement';
54}
55
56# Once we have an __END__ we're done
57sub _complete () { 1 }
58
591;
60
61=pod
62
63=head1 SUPPORT
64
65See the L<support section|PPI/SUPPORT> in the main module.
66
67=head1 AUTHOR
68
69Adam Kennedy E<lt>adamk@cpan.orgE<gt>
70
71=head1 COPYRIGHT
72
73Copyright 2001 - 2009 Adam Kennedy.
74
75This program is free software; you can redistribute
76it and/or modify it under the same terms as Perl itself.
77
78The full text of the license can be found in the
79LICENSE file included with this module.
80
81=cut