Ignore:
Timestamp:
Jan 16, 2014, 2:55:30 PM (12 years ago)
Author:
[email protected]
Message:

throwing an objc object (or general binding object) triggers an assertion
https://bugs.webkit.org/show_bug.cgi?id=127146

Reviewed by Alexey Proskuryakov.

This is simply a bogus assertion as we can't guarantee a bindings object
won't intercept assignment to .stack

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::unwind):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp

    r161220 r162156  
    678678
    679679    ASSERT(callFrame->vm().exceptionStack().size());
    680     ASSERT(!exceptionValue.isObject() || asObject(exceptionValue)->hasProperty(callFrame, callFrame->vm().propertyNames->stack));
    681680
    682681    Debugger* debugger = callFrame->vmEntryGlobalObject()->debugger();
Note: See TracChangeset for help on using the changeset viewer.