PPIx::Regexp::Token::Unmatched - Represent an unmatched right bracket


PPIx-Regexp documentation Contained in the PPIx-Regexp distribution.

Index


Code Index:

NAME

Top

PPIx::Regexp::Token::Unmatched - Represent an unmatched right bracket

SYNOPSIS

Top

 use PPIx::Regexp::Dumper;
 PPIx::Regexp::Dumper->new( 'qr{)}smx' )
     ->print();

INHERITANCE

Top

PPIx::Regexp::Token::Unmatched is a PPIx::Regexp::Token.

PPIx::Regexp::Token::Unmatched has no descendants.

DESCRIPTION

Top

This class is used to represent an unmatched right bracket of any sort - parenthesis, square bracket, curly bracket, or whatever.

This class is not generated by the tokenizer; instead the lexer reblesses a PPIx::Regexp::Token::Structure into it when it is found to be unmatched.

METHODS

Top

This class provides no public methods beyond those provided by its superclass.

SUPPORT

Top

Support is by the author. Please file bug reports at http://rt.cpan.org, or in electronic mail to the author.

AUTHOR

Top

Thomas R. Wyant, III wyant at cpan dot org

COPYRIGHT AND LICENSE

Top


PPIx-Regexp documentation Contained in the PPIx-Regexp distribution.
package PPIx::Regexp::Token::Unmatched;

use strict;
use warnings;

use base qw{ PPIx::Regexp::Token };

our $VERSION = '0.020';

# Return true if the token can be quantified, and false otherwise
# sub can_be_quantified { return };

1;

__END__

# ex: set textwidth=72 :