Closed
Bug 452729
Opened 17 years ago
Closed 13 years ago
Extra parenthesis on decompilation of "x.y.(@attr==5)"
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: BijuMailList, Unassigned)
References
Details
(Keywords: testcase)
Just writing this for future...
Extra parenthesis on decompilation of "x.y.(@attr==5)"
a = function(){
y=x.y.(@attr==5);
if(x.y.(@attr==5))x();
}
gives ==>
function () {
y = x.y.((@attr == 5));
if (x.y.((@attr == 5))) {
x();
}
}
see also Bug 381197,
and Bug 381197 comment 6
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•