Closed
Bug 352266
Opened 19 years ago
Closed 19 years ago
Excess indentation causes round-trip change
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: testcase)
js> function() { if(x) {{ let x = 4; }} }
function () {
if (x) {
let x = 4;
}
}
If I feed that back into the compiler and decompiler, I get
function () {
if (x) {
let x = 4;
}
}
Comment 2•19 years ago
|
||
Fixed by patch for bug 352217:
js> function() { if(x) {{ let x = 4; }} }
function () {
if (x) {
{
let x = 4;
}
}
}
/be
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Comment 3•19 years ago
|
||
Checking in regress-352266.js;
/cvsroot/mozilla/js/tests/js1_7/block/regress-352266.js,v <-- regress-352266.js
initial revision: 1.1
done
Flags: in-testsuite+
Comment 4•19 years ago
|
||
verified fixed 1.9 20060914 windows/mac*/linux
bug not evident on 1.8...
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•