Closed
Bug 694360
Opened 13 years ago
Closed 13 years ago
Permit unicode escape sequences in keywords (thi\u0073 is a keyword, not an identifier)
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla10
People
(Reporter: jorendorff, Assigned: evilpies)
Details
Attachments
(1 file)
7.26 KB,
patch
|
jorendorff
:
review+
|
Details | Diff | Splinter Review |
This should be a SyntaxError:
var thi\u0073;
Currently we permit it and actually declare a variable named "this" (although we ban it in strict mode, apparently by accident rather than by design).
See discussion here:
https://mail.mozilla.org/pipermail/es-discuss/2011-June/015389.html
The most persuasive response was Allen Wirfs-Brock's interpretation of ES5:
https://mail.mozilla.org/pipermail/es-discuss/2011-June/015422.html
No one really disagreed.
Attachment #567474 -
Flags: review?(jorendorff)
Reporter | ||
Comment 2•13 years ago
|
||
Comment on attachment 567474 [details] [diff] [review]
v1 detect unicode escaped keywords
throws() has a bug: if eval(code) does not throw, the test passes.
r=me with that fixed. Thanks!
Attachment #567474 -
Flags: review?(jorendorff) → review+
Comment 4•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla10
You need to log in
before you can comment on or make changes to this bug.
Description
•