PPIx-Regexp

 view release on metacpan or  search on metacpan

lib/PPIx/Regexp/Constant.pm  view on Meta::CPAN

285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
#
#      Currently NAME is restricted to simple identifiers only.  In
#      other words, it must match "/^[_A-Za-z][_A-Za-z0-9]*\z/" or
#      its Unicode extension (see utf8), though it isn't extended by
#      the locale (see perllocale).
 
use constant RE_CAPTURE_NAME => ' [_[:alpha:]] \w* ';
 
use constant STRUCTURE_UNKNOWN  => 'PPIx::Regexp::Structure::Unknown';
 
use constant SUFFICIENT_UTF8_SUPPORT_FOR_WEIRD_DELIMITERS => $] ge '5.008003';
 
use constant TOKEN_LITERAL      => 'PPIx::Regexp::Token::Literal';
use constant TOKEN_UNKNOWN      => 'PPIx::Regexp::Token::Unknown';
 
use constant VARIABLE_LENGTH_LOOK_BEHIND_INTRODUCED     => '5.029009';
 
1;
 
__END__



( run in 0.573 second using v1.01-cache-2.11-cpan-94b05bcf43c )