Closed
Bug 599459
Opened 14 years ago
Closed 14 years ago
"Assertion failure: isExtensible(),"
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 599464
Tracking | Status | |
---|---|---|
blocking2.0 | --- | betaN+ |
People
(Reporter: gkw, Assigned: Waldo)
References
Details
(Keywords: assertion, regression, testcase)
bb = eval
function h() {
this.eval = bb
}
try {
(function() {
Object.defineProperty(this, "eval", ({
set: Object.preventExtensions
}));
l
})()
} catch(e) {
h()
}
h()
asserts js debug shell on TM changeset a3ff60f75cb8 without -m nor -j at Assertion failure: isExtensible(),
Reporter | ||
Updated•14 years ago
|
blocking2.0: --- → ?
Updated•14 years ago
|
blocking2.0: ? → betaN+
Reporter | ||
Comment 1•14 years ago
|
||
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 54276:aa9b86572020
user: Jim Blandy
date: Tue Sep 21 11:35:29 2010 -0700
summary: Bug 492849 - Implement Object.preventExtensions, Object.isExtensible. a=waldo,jimb, r=brendan
Blocks: 492849
Assignee | ||
Updated•14 years ago
|
Assignee: general → jwalden+bmo
Assignee | ||
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
Comment 3•12 years ago
|
||
A testcase for this bug was already added in the original bug (bug 599464).
Flags: in-testsuite-
You need to log in
before you can comment on or make changes to this bug.
Description
•