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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user