This commit is contained in:
pschwartau%netscape.com 2003-03-15 00:07:50 +00:00
Родитель f371aaa725
Коммит 5dfc4c8609
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -114,10 +114,11 @@ testThis(' /??a/ ');
/*
* Misusing the {DecmalDigits} quantifier - according to ECMA.
* Misusing the {DecmalDigits} quantifier - according to ECMA,
* but not according to Perl.
*
* ECMA-262 Edition 3 prohibits the use of unescaped braces in
* regexp patterns, unless they form part of a quantifier
* regexp patterns, unless they form part of a quantifier.
*
* Hovever, Perl does not prohibit this. If not used as part
* of a quantifer, Perl treats braces literally.