/usr/share/perl5/PPI/Statement.pm is in libppi-perl 1.215-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | package PPI::Statement;
=pod
=head1 NAME
PPI::Statement - The base class for Perl statements
=head1 INHERITANCE
PPI::Statement
isa PPI::Node
isa PPI::Element
=head1 DESCRIPTION
PPI::Statement is the root class for all Perl statements. This includes (from
L<perlsyn>) "Declarations", "Simple Statements" and "Compound Statements".
The class PPI::Statement itself represents a "Simple Statement" as defined
in the L<perlsyn> manpage.
=head1 STATEMENT CLASSES
Please note that unless documented themselves, these classes are yet to be
frozen/finalised. Names may change slightly or be added or removed.
=head2 L<PPI::Statement::Scheduled>
This covers all "scheduled" blocks, chunks of code that are executed separately
from the main body of the code, at a particular time. This includes all
C<BEGIN>, C<CHECK>, C<UNITCHECK>, C<INIT> and C<END> blocks.
=head2 L<PPI::Statement::Package>
A package declaration, as defined in L<perlfunc|perlfunc/package>.
=head2 L<PPI::Statement::Include>
A statement that loads or unloads another module.
This includes 'use', 'no', and 'require' statements.
=head2 L<PPI::Statement::Sub>
A named subroutine declaration, or forward declaration
=head2 L<PPI::Statement::Variable>
A variable declaration statement. This could be either a straight
declaration or also be an expression.
This includes all 'my', 'state', 'local' and 'our' statements.
=head2 L<PPI::Statement::Compound>
This covers the whole family of 'compound' statements, as described in
L<perlsyn|perlsyn>.
This includes all statements starting with 'if', 'unless', 'for', 'foreach'
and 'while'. Note that this does NOT include 'do', as it is treated
differently.
All compound statements have implicit ends. That is, they do not end with
a ';' statement terminator.
=head2 L<PPI::Statement::Break>
A statement that breaks out of a structure.
This includes all of 'redo', 'next', 'last' and 'return' statements.
=head2 L<PPI::Statement::Given>
The kind of statement introduced in Perl 5.10 that starts with 'given'. This
has an implicit end.
=head2 L<PPI::Statement::When>
The kind of statement introduced in Perl 5.10 that starts with 'when' or
'default'. This also has an implicit end.
=head2 L<PPI::Statement::Data>
A special statement which encompasses an entire C<__DATA__> block, including
the initial C<'__DATA__'> token itself and the entire contents.
=head2 L<PPI::Statement::End>
A special statement which encompasses an entire __END__ block, including
the initial '__END__' token itself and the entire contents, including any
parsed PPI::Token::POD that may occur in it.
=head2 L<PPI::Statement::Expression>
L<PPI::Statement::Expression> is a little more speculative, and is intended
to help represent the special rules relating to "expressions" such as in:
# Several examples of expression statements
# Boolean conditions
if ( expression ) { ... }
# Lists, such as for arguments
Foo->bar( expression )
=head2 L<PPI::Statement::Null>
A null statement is a special case for where we encounter two consecutive
statement terminators. ( ;; )
The second terminator is given an entire statement of its own, but one
that serves no purpose. Hence a 'null' statement.
Theoretically, assuming a correct parsing of a perl file, all null statements
are superfluous and should be able to be removed without damage to the file.
But don't do that, in case PPI has parsed something wrong.
=head2 L<PPI::Statement::UnmatchedBrace>
Because L<PPI> is intended for use when parsing incorrect or incomplete code,
the problem arises of what to do with a stray closing brace.
Rather than die, it is allocated its own "unmatched brace" statement,
which really means "unmatched closing brace". An unmatched open brace at the
end of a file would become a structure with no contents and no closing brace.
If the document loaded is intended to be correct and valid, finding a
L<PPI::Statement::UnmatchedBrace> in the PDOM is generally indicative of a
misparse.
=head2 L<PPI::Statement::Unknown>
This is used temporarily mid-parsing to hold statements for which the lexer
cannot yet determine what class it should be, usually because there are
insufficient clues, or it might be more than one thing.
You should never encounter these in a fully parsed PDOM tree.
=head1 METHODS
C<PPI::Statement> itself has very few methods. Most of the time, you will be
working with the more generic L<PPI::Element> or L<PPI::Node> methods, or one
of the methods that are subclass-specific.
=cut
use strict;
use Scalar::Util ();
use Params::Util qw{_INSTANCE};
use PPI::Node ();
use PPI::Exception ();
use vars qw{$VERSION @ISA *_PARENT};
BEGIN {
$VERSION = '1.215';
@ISA = 'PPI::Node';
*_PARENT = *PPI::Element::_PARENT;
}
use PPI::Statement::Break ();
use PPI::Statement::Compound ();
use PPI::Statement::Data ();
use PPI::Statement::End ();
use PPI::Statement::Expression ();
use PPI::Statement::Include ();
use PPI::Statement::Null ();
use PPI::Statement::Package ();
use PPI::Statement::Scheduled ();
use PPI::Statement::Sub ();
use PPI::Statement::Given ();
use PPI::Statement::UnmatchedBrace ();
use PPI::Statement::Unknown ();
use PPI::Statement::Variable ();
use PPI::Statement::When ();
# "Normal" statements end at a statement terminator ;
# Some are not, and need the more rigorous _continues to see
# if we are at an implicit statement boundary.
sub __LEXER__normal { 1 }
#####################################################################
# Constructor
sub new {
my $class = shift;
if ( ref $class ) {
PPI::Exception->throw;
}
# Create the object
my $self = bless {
children => [],
}, $class;
# If we have been passed what should be an initial token, add it
my $token = shift;
if ( _INSTANCE($token, 'PPI::Token') ) {
# Inlined $self->__add_element(shift);
Scalar::Util::weaken(
$_PARENT{Scalar::Util::refaddr $token} = $self
);
push @{$self->{children}}, $token;
}
$self;
}
=pod
=head2 label
One factor common to most statements is their ability to be labeled.
The C<label> method returns the label for a statement, if one has been
defined, but without the trailing colon. Take the following example
MYLABEL: while ( 1 .. 10 ) { last MYLABEL if $_ > 5 }
For the above statement, the C<label> method would return 'MYLABEL'.
Returns false if the statement does not have a label.
=cut
sub label {
my $first = shift->schild(1) or return '';
$first->isa('PPI::Token::Label')
? substr($first, 0, length($first) - 1)
: '';
}
=pod
=head2 specialized
Answer whether this is a plain statement or one that has more
significance.
Returns true if the statement is a subclass of this one, false
otherwise.
=begin testing specialized 22
my $Document = PPI::Document->new(\<<'END_PERL');
package Foo;
use strict;
;
while (1) { last; }
BEGIN { }
sub foo { }
state $x;
$x = 5;
END_PERL
isa_ok( $Document, 'PPI::Document' );
my $statements = $Document->find('Statement');
is( scalar @{$statements}, 10, 'Found the 10 test statements' );
isa_ok( $statements->[0], 'PPI::Statement::Package', 'Statement 1: isa Package' );
ok( $statements->[0]->specialized, 'Statement 1: is specialized' );
isa_ok( $statements->[1], 'PPI::Statement::Include', 'Statement 2: isa Include' );
ok( $statements->[1]->specialized, 'Statement 2: is specialized' );
isa_ok( $statements->[2], 'PPI::Statement::Null', 'Statement 3: isa Null' );
ok( $statements->[2]->specialized, 'Statement 3: is specialized' );
isa_ok( $statements->[3], 'PPI::Statement::Compound', 'Statement 4: isa Compound' );
ok( $statements->[3]->specialized, 'Statement 4: is specialized' );
isa_ok( $statements->[4], 'PPI::Statement::Expression', 'Statement 5: isa Expression' );
ok( $statements->[4]->specialized, 'Statement 5: is specialized' );
isa_ok( $statements->[5], 'PPI::Statement::Break', 'Statement 6: isa Break' );
ok( $statements->[5]->specialized, 'Statement 6: is specialized' );
isa_ok( $statements->[6], 'PPI::Statement::Scheduled', 'Statement 7: isa Scheduled' );
ok( $statements->[6]->specialized, 'Statement 7: is specialized' );
isa_ok( $statements->[7], 'PPI::Statement::Sub', 'Statement 8: isa Sub' );
ok( $statements->[7]->specialized, 'Statement 8: is specialized' );
isa_ok( $statements->[8], 'PPI::Statement::Variable', 'Statement 9: isa Variable' );
ok( $statements->[8]->specialized, 'Statement 9: is specialized' );
is( ref $statements->[9], 'PPI::Statement', 'Statement 10: is a simple Statement' );
ok( ! $statements->[9]->specialized, 'Statement 10: is not specialized' );
=end testing
=cut
# Yes, this is doing precisely what it's intending to prevent
# client code from doing. However, since it's here, if the
# implementation changes, code outside PPI doesn't care.
sub specialized {
__PACKAGE__ ne ref $_[0];
}
=pod
=head2 stable
Much like the L<PPI::Document> method of the same name, the ->stable
method converts a statement to source and back again, to determine if
a modified statement is still legal, and won't be interpreted in a
different way.
Returns true if the statement is stable, false if not, or C<undef> on
error.
=cut
sub stable {
die "The ->stable method has not yet been implemented";
}
#####################################################################
# PPI::Element Methods
# Is the statement complete.
# By default for a statement, we need a semi-colon at the end.
sub _complete {
my $self = shift;
my $semi = $self->schild(-1);
return !! (
defined $semi
and
$semi->isa('PPI::Token::Structure')
and
$semi->content eq ';'
);
}
# You can insert either a statement or a non-significant token.
sub insert_before {
my $self = shift;
my $Element = _INSTANCE(shift, 'PPI::Element') or return undef;
if ( $Element->isa('PPI::Statement') ) {
return $self->__insert_before($Element);
} elsif ( $Element->isa('PPI::Token') and ! $Element->significant ) {
return $self->__insert_before($Element);
}
'';
}
# As above, you can insert a statement, or a non-significant token
sub insert_after {
my $self = shift;
my $Element = _INSTANCE(shift, 'PPI::Element') or return undef;
if ( $Element->isa('PPI::Statement') ) {
return $self->__insert_after($Element);
} elsif ( $Element->isa('PPI::Token') and ! $Element->significant ) {
return $self->__insert_after($Element);
}
'';
}
1;
=pod
=head1 TO DO
- Complete, freeze and document the remaining classes
=head1 SUPPORT
See the L<support section|PPI/SUPPORT> in the main module.
=head1 AUTHOR
Adam Kennedy E<lt>adamk@cpan.orgE<gt>
=head1 COPYRIGHT
Copyright 2001 - 2011 Adam Kennedy.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
=cut
|