Closed
Bug 460883
Opened 17 years ago
Closed 17 years ago
TM: "Assertion failure: JS_ON_TRACE(cx)" with a bunch of getters and an array comprehension
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: jruderman, Unassigned)
Details
(Keywords: assertion, testcase)
a = 1;
this.__defineGetter__('b', function () 3.5);
f = '';
this.__defineGetter__('c', function () {});
this.__defineGetter__('d', function () {});
f = 0;
this.__defineGetter__('e', function () 3);
[1 for each (x in this) if (x)];
Assertion failure: JS_ON_TRACE(cx), at jsbuiltins.cpp:110
(Happens both with pasting into ./js and with feeding to ./js as a file)
Reporter | ||
Updated•17 years ago
|
Summary: "Assertion failure: JS_ON_TRACE(cx)" with a bunch of getters and an array comprehension → TM: "Assertion failure: JS_ON_TRACE(cx)" with a bunch of getters and an array comprehension
Reporter | ||
Comment 1•17 years ago
|
||
WFM
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•