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.


git-svn-id: svn://10.0.0.236/trunk@61998 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
2000-03-01 23:28:14 +00:00
parent e439b08189
commit 720b0c8a4e

View File

@@ -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");