Closed
Bug 495907
Opened 15 years ago
Closed 15 years ago
upvar incorrectness with "let"
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: jruderman, Assigned: dmandelin)
References
Details
(Keywords: testcase, verified1.9.1, Whiteboard: fixed-in-tracemonkey)
Attachments
(1 file)
3.36 KB,
patch
|
gal
:
review+
|
Details | Diff | Splinter Review |
var o = []; for (let a = 0; a < 4; ++a) { (function () {for (var b = 0; b < 2; ++b) {o.push(a);}}()); } print(o.join("")); 00112233 without JIT (correct) 00112222 with JIT
Reporter | ||
Comment 1•15 years ago
|
||
I can reproduce this bug on the 1.9.1 branch.
Flags: blocking1.9.1?
Updated•15 years ago
|
Flags: blocking1.9.1? → blocking1.9.1+
Updated•15 years ago
|
Whiteboard: [needs assignee]
Assignee | ||
Updated•15 years ago
|
Assignee: general → dmandelin
Whiteboard: [needs assignee]
Assignee | ||
Comment 2•15 years ago
|
||
Attachment #381119 -
Flags: review?(gal)
Updated•15 years ago
|
Attachment #381119 -
Flags: review?(gal) → review+
Assignee | ||
Comment 3•15 years ago
|
||
Pushed to TM as b9e104ec562f.
Updated•15 years ago
|
Whiteboard: fixed-in-tracemonkey
Comment 4•15 years ago
|
||
http://hg.mozilla.org/mozilla-central/rev/b9e104ec562f
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Comment 5•15 years ago
|
||
http://hg.mozilla.org/releases/mozilla-1.9.1/rev/17a92e7180ed
Keywords: fixed1.9.1
Comment 6•15 years ago
|
||
js1_8_1/regress/regress-495907.js v 1.9.1, 1.9.2
Comment 7•14 years ago
|
||
/cvsroot/mozilla/js/tests/js1_8_1/regress/regress-495907.js,v <-- regress-495907.js initial revision: 1.1
You need to log in
before you can comment on or make changes to this bug.
Description
•