shell bypass 403
package PPIx::QuoteLike::Token;
use 5.006;
use strict;
use warnings;
use Carp;
use PPIx::QuoteLike::Constant qw{ MINIMUM_PERL @CARP_NOT };
our $VERSION = '0.008';
# Private to this package.
sub __new {
my ( $self, %arg ) = @_;
defined $arg{content}
or croak 'Content required';
return bless \%arg, ref $self || $self;
}
sub content {
my ( $self ) = @_;
return $self->{content};
}
sub error {
my ( $self ) = @_;
return $self->{error};
}
sub parent {
my ( $self ) = @_;
return $self->{parent};
}
sub next_sibling {
my ( $self ) = @_;
$self->{next_sibling}
or return;
return $self->{next_sibling};
}
sub perl_version_introduced {
my ( $self ) = @_;
# TODO use '//' when we can require Perl 5.10.
defined $self->{perl_version_introduced}
and return $self->{perl_version_introduced};
my $vers = $self->__perl_version_introduced();
defined $vers
or $vers = MINIMUM_PERL;
return ( $self->{perl_version_introduced} = $vers );
}
sub __perl_version_introduced {
return;
}
sub perl_version_removed {
return undef; ## no critic (ProhibitExplicitReturnUndef)
}
sub previous_sibling {
my ( $self ) = @_;
$self->{previous_sibling}
or return;
return $self->{previous_sibling};
}
sub significant {
return 1;
}
sub snext_sibling {
my ( $sib ) = @_;
while ( $sib = $sib->next_sibling() ) {
$sib->significant()
and return $sib;
}
return;
}
sub sprevious_sibling {
my ( $sib ) = @_;
while ( $sib = $sib->previous_sibling() ) {
$sib->significant()
and return $sib;
}
return;
}
1;
__END__
=head1 NAME
PPIx::QuoteLike::Token - Represent any token.
=head1 SYNOPSIS
This is an abstract class, and should not be instantiated by the user.
=head1 DESCRIPTION
This Perl module represents the base of the token hierarchy.
=head1 INHERITANCE
C<PPIx::QuoteLike::Token> is not descended from any other class.
C<PPIx::QuoteLike::Token> is the parent of
L<PPIx::QuoteLike::Token::Control|PPIx::QuoteLike::Token::Control>,
L<PPIx::QuoteLike::Token::Interpolation|PPIx::QuoteLike::Token::Interpolation>,
L<PPIx::QuoteLike::Token::String|PPIx::QuoteLike::Token::String>,
L<PPIx::QuoteLike::Token::Structure|PPIx::QuoteLike::Token::Structure>,
L<PPIx::QuoteLike::Token::Unknown|PPIx::QuoteLike::Token::Unknown> and
L<PPIx::QuoteLike::Token::Whitespace|PPIx::QuoteLike::Token::Whitespace>.
=head1 METHODS
This class supports the following public methods:
=head2 content
say $token->content();
This method returns the text that makes up the token.
=head2 error
say $token->error();
This method returns the error text. This will be C<undef> unless the
token actually represents an error.
=head2 parent
my $parent = $token->parent();
This method returns the token's parent, which will be the
L<PPIx::QuoteLike|PPIx::QuoteLike> object that contains it.
=head2 next_sibling
my $next = $token->next_sibling();
This method returns the token after the invocant, or nothing if there is
none.
=head2 perl_version_introduced
This method returns the version of Perl in which the element was
introduced. This will be at least 5.000. Before 5.006 I am relying on
the F<perldelta>, F<perlre>, and F<perlop> documentation, since I have
been unable to build earlier Perls. Since I have found no documentation
before 5.003, I assume that anything found in 5.003 is also in 5.000.
Since this all depends on my ability to read and understand masses of
documentation, the results of this method should be viewed with caution,
if not downright skepticism.
There are also cases which are ambiguous in various ways. For those see
L<PPIx::Regexp/RESTRICTIONS>, and especially
L<PPIx::Regexp/Changes in Syntax>.
=head2 perl_version_removed
This method returns the version of Perl in which the element was
removed. If the element is still valid the return is C<undef>.
All the I<caveats> to
L<perl_version_introduced()|/perl_version_introduced> apply here also,
though perhaps less severely since although many features have been
introduced since 5.0, few have been removed.
=head2 previous_sibling
my $prev = $token->previous_sibling();
This method returns the token before the invocant, or nothing if there
is none.
=head2 significant
$token->significant()
and say 'significant';
This Boolean method returns a true value if the token is significant,
and a false one otherwise.
=head2 snext_sibling
my $next = $token->snext_sibling();
This method returns the significant token after the invocant, or nothing
if there is none.
=head2 sprevious_sibling
my $prev = $token->sprevious_sibling();
This method returns the significant token before the invocant, or
nothing if there is none.
=head1 SEE ALSO
L<PPIx::QuoteLike|PPIx::QuoteLike>.
=head1 SUPPORT
Support is by the author. Please file bug reports at
L<http://rt.cpan.org>, or in electronic mail to the author.
=head1 AUTHOR
Thomas R. Wyant, III F<wyant at cpan dot org>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2016-2019 by Thomas R. Wyant, III
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl 5.10.0. For more details, see the full text
of the licenses in the directory LICENSES.
This program is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of
merchantability or fitness for a particular purpose.
=cut
# ex: set textwidth=72 :