- Timestamp:
- 07/22/08 17:27:44 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
perl5/Pugs-Compiler-Rule/lib/Pugs/Emitter/Rule/Perl5/CharClass.pm
r21438 r21439 13 13 word xdigit 14 14 ); 15 # XXX this list is broken!!!16 15 %extra_unicode = ( 17 16 'isLr' => '(?:\p{isLl}|\p{isLu}|\p{isLt})', 17 'isInLatin1Supplement' => '[\x{0080}–\x{00FF}]', 18 'isInCyrillicSupplementary' => '[\x{0500}–\x{052F}]', 19 'isID_Start' => '\p{ID_Start}', 20 # XXX the remaining list is broken!!! 18 21 'isBidiL' => '(?:\p{isLatin})', 19 22 'isBidiR' => '(?:\p{isHebrew}|\p{isArabic})', … … 22 25 'isBidiET' => '(?:\p{isHebrew}|\p{isArabic})', 23 26 'isBidiWS' => '(?:\p{isHebrew}|\p{isArabic})', 24 'isID_Start' => '(?:\p{isHebrew}|\p{isArabic})',25 'isInCyrillicSupplementary' => '(?:\p{isHebrew}|\p{isArabic})',26 'isInLatin1Supplement' => '(?:\p{isLatin})',27 27 ); 28 28 }
