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