Closed
Bug 755560
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: isObject(), at ../../jsapi.h:509
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Assigned: dvander)
References
Details
(Keywords: assertion, testcase)
Attachments
(1 file)
(deleted),
patch
|
nbp
:
review+
|
Details | Diff | Splinter Review |
The following testcase asserts on ionmonkey revision 50177d59c0e1 (run with --ion -n -m):
function Employee ( name, dept ) {
this.name=name || ""
}
function WorkerBee ( name, dept, projs ) {}
var SECTION = "toString-001.js";
while ( SECTION , this)
WorkerBee.prototype = new Employee();
Assignee | ||
Comment 1•13 years ago
|
||
This is another bug masked by the OSR changes made recently. Taking.
Assignee: general → dvander
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•13 years ago
|
||
Turns out this can be called in the middle of js::StackFrame construction, so thisv can be JSVAL_NULL.
Attachment #624601 -
Flags: review?(nicolas.b.pierron)
Updated•13 years ago
|
Attachment #624601 -
Flags: review?(nicolas.b.pierron) → review+
Assignee | ||
Comment 3•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•