Closed
Bug 679810
Opened 13 years ago
Closed 13 years ago
TI: Assertion failure: !unknownProperties(), at jsinferinlines.h:1173
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase)
The following testcase asserts on TI revision 2d95fc517e57 (run with -j -m -n -a), tested on 64 bit:
function WorkerBee(name, dept, projs) {
this.projects &= projs || new Array();
}
function Engineer(name, projs, machine) {
this.base = WorkerBee;
this.base(name, "engineering", projs)
this.machine = machine || "";
}
Engineer.prototype = new XMLList();
var les = new Engineer("Morris, Les", new Array("JavaScript"), "indy");
Comment 1•13 years ago
|
||
Missed checking for an object with unknown property types (and no constraint listeners) when triggering a generic state change on the type (global slots reallocation, ...).
http://hg.mozilla.org/projects/jaegermonkey/rev/3e32ddcd4bcd
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 2•12 years ago
|
||
Automatically extracted testcase for this bug was committed:
https://hg.mozilla.org/mozilla-central/rev/efaf8960a929
Flags: in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•