Closed
Bug 355667
Opened 18 years ago
Closed 13 years ago
Extra "let" keyword in decompilation of "let" declaration with destructuring
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 692274
People
(Reporter: jruderman, Unassigned)
Details
(Keywords: testcase)
js> function() { let x, [p] = y; }
function () {
let x, let [p] = y;
}
Reporter | ||
Comment 1•18 years ago
|
||
Same thing happens with "var" in place of "let".
Reporter | ||
Comment 2•18 years ago
|
||
Related to bug 355786?
Comment 3•13 years ago
|
||
Still happens, though the lets in comment #0 are now changed to vars.
js> print(function() { let x, [p] = y; })
function () {
var x, var [p] = y;
}
OS: Mac OS X → All
Hardware: PowerPC → All
Comment 4•13 years ago
|
||
Fixed by recent let un-hackage.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•