Need to pass expressions containing unicode identifiers as split strings

since the string processing will convert the unicode sequences into regular
characters before the identifier is recognized. The fact that Monkey was
cool with this is a separate bug.
This commit is contained in:
rogerl%netscape.com 2000-03-01 23:28:14 +00:00
Родитель f704383014
Коммит 69d4d5e142
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -43,9 +43,9 @@ function test()
"Escaped non-ASCII Identifier test");
reportCompare (16, eval("++A\u03B2"),
"Escaped non-ASCII Identifier test");
reportCompare (25, eval("c\u0061se"),
reportCompare (25, eval("c\\u00" + "61se"),
"Escaped keyword Identifier test");
reportCompare (26, eval("++c\u0061se"),
reportCompare (26, eval("++c\\u00" + "61se"),
"Escaped keyword Identifier test");
exitFunc ("test");