Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / PPI / Structure / When.pm
CommitLineData
3fea05b9 1package PPI::Structure::When;
2
3=pod
4
5=head1 NAME
6
7PPI::Structure::When - Circular braces for a when statement
8
9=head1 SYNOPSIS
10
11 when ( something ) {
12 ...
13 }
14
15=head1 INHERITANCE
16
17 PPI::Structure::When
18 isa PPI::Structure
19 isa PPI::Node
20 isa PPI::Element
21
22=head1 DESCRIPTION
23
24C<PPI::Structure::When> is the class used for circular braces that
25contain the thing to be matched in a when statement.
26
27=head1 METHODS
28
29C<PPI::Structure::When> has no methods beyond those provided by the
30standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
31
32Got any ideas for methods? Submit a report to rt.cpan.org!
33
34=cut
35
36use strict;
37use PPI::Structure ();
38
39use vars qw{$VERSION @ISA};
40BEGIN {
41 $VERSION = '1.206';
42 @ISA = 'PPI::Structure';
43}
44
451;
46
47=pod
48
49=head1 SUPPORT
50
51See the L<support section|PPI/SUPPORT> in the main module.
52
53=head1 AUTHOR
54
55Adam Kennedy E<lt>adamk@cpan.orgE<gt>
56
57=head1 COPYRIGHT
58
59Copyright 2001 - 2009 Adam Kennedy.
60
61This program is free software; you can redistribute
62it and/or modify it under the same terms as Perl itself.
63
64The full text of the license can be found in the
65LICENSE file included with this module.
66
67=cut