Closed
Bug 722656
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: entry->prop == shape, at js/src/jsinterp.cpp:1275
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Assigned: dvander)
References
Details
Attachments
(1 file)
1.44 KB,
patch
|
bhackett1024
:
review+
|
Details | Diff | Splinter Review |
The testcase below is reduced from tests/basic/splice-check-steps.js
$ ./js --ion -n test.js
Assertion failure: entry->prop == shape, at js/src/jsinterp.cpp:1275
Looks like there's a problem with the two NAME ops in the "note" function.
--
function f(obj) {
var order = [];
function note() {
order;
obj;
}
return Proxy.create({get: note});
}
proxy = f({});
for (var i=0; i<90; i++)
proxy.foo;
proxy = f({});
for (var i=0; i<90; i++)
proxy.foo;
Assignee | ||
Comment 1•13 years ago
|
||
Updated•13 years ago
|
Attachment #593215 -
Flags: review?(bhackett1024) → review+
Assignee | ||
Comment 2•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
•