Bug 157524
Summary: | [JSC] Assertion failure in JSC::JSObject::putInline (super-property-access.js) | ||
---|---|---|---|
Product: | WebKit | Reporter: | Caitlin Potter (:caitp) <caitp> |
Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | fpizlo, mark.lam, ossy, saam |
Priority: | P2 | ||
Version: | WebKit Local Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Bug Depends on: | |||
Bug Blocks: | 147064 |
Caitlin Potter (:caitp)
Failure in ftl-eager variants of super-property-access.js (introduced in http://trac.webkit.org/changeset/200586)
```
56 ALWAYS_INLINE bool JSObject::putInline(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot)
57 {
58 JSObject* thisObject = jsCast<JSObject*>(cell);
-> 59 ASSERT(value);
60 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(thisObject));
61 VM& vm = exec->vm();
62
```
reached via operationPutByValWithThisStrict
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Saam Barati
*** This bug has been marked as a duplicate of bug 157548 ***