Closed
Bug 642157
Opened 15 years ago
Closed 15 years ago
JM: [infer failure] Missing type in object #2:0:Object prop: #2:0:Object
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: testcase)
The following test case (run with -n -a -m) crashes on JM tip (tested on 64
bit):
test();
function test()
{
var obj2 = {};
testThis(this);
testThis(obj1);
testThis(obj2);
}
function testThis(obj)
{
obj.prop = obj;
sToSource = obj.toSource();
}
Comment 1•15 years ago
|
||
WFM, fixed I think by the below cset (this test is derived from a jstest that was broken this morning).
http://hg.mozilla.org/projects/jaegermonkey/rev/af28561f4470
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•