Closed
Bug 352304
Opened 18 years ago
Closed 16 years ago
Round-trip change with unary operator in parens
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 461269
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: testcase)
js> function() { return 2 * (~3) }
function () {
return 2 * -4;
}
js> function () {
return 2 * -4;
}
function () {
return -8;
}
Comment 1•16 years ago
|
||
Current tracemonkey tip:
js> function() { return 2 * (~3) }
function () {
return -8;
}
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•