Closed
Bug 462092
Opened 16 years ago
Closed 16 years ago
TM: "Assertion failure: JS_ON_TRACE(cx)" with array comprehension, getter
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 474771
People
(Reporter: jruderman, Unassigned)
Details
(Keywords: assertion, testcase)
var a = false;
var b = {};
var c = false;
var d = {};
this.__defineGetter__('e', function(){});
for (let f in this) print(f);
[1 for each (g in this) for each (h in [])]
Reporter | ||
Comment 1•16 years ago
|
||
~/tracemonkey/js/src/Darwin_DBG.OBJ/js -j k.js
a
b
c
d
e
Assertion failure: JS_ON_TRACE(cx), at jsarray.cpp:3055
Not triggered by pasting into the shell.
Reporter | ||
Comment 2•16 years ago
|
||
Still happens on tracemonkey branch.
Updated•16 years ago
|
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → DUPLICATE
Comment 4•12 years ago
|
||
A testcase for this bug was already added in the original bug (bug 474771).
Flags: in-testsuite-
You need to log in
before you can comment on or make changes to this bug.
Description
•