Closed
Bug 352421
Opened 18 years ago
Closed 16 years ago
Decompiler always uses braces for do..while, even if it changes the meaning of a "let" declaration
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jruderman, Unassigned)
Details
(Keywords: testcase)
Split from bug 352217.
js> function() { do let x; while ( 1) }
function () {
do {
let x;
} while (1);
}
Comment 1•16 years ago
|
||
This was fixed a while ago by bug 408957.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Flags: in-testsuite-
Flags: in-litmus-
You need to log in
before you can comment on or make changes to this bug.
Description
•