Changeset 218652 in webkit for trunk/Source/JavaScriptCore/debugger
- Timestamp:
- Jun 21, 2017, 2:32:44 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/Debugger.cpp
r216428 r218652 758 758 return; 759 759 760 if (JSObject* object = jsDynamicCast<JSObject*>(m_vm, exception)) { 761 if (object->isErrorInstance()) { 762 ErrorInstance* error = static_cast<ErrorInstance*>(object); 763 // FIXME: <https://webkit.org/b/173625> Web Inspector: Should be able to pause and debug a StackOverflow Exception 764 // FIXME: <https://webkit.org/b/173627> Web Inspector: Should be able to pause and debug an OutOfMemory Exception 765 if (error->isStackOverflowError() || error->isOutOfMemoryError()) 766 return; 767 } 768 } 769 760 770 PauseReasonDeclaration reason(*this, PausedForException); 761 771 if (m_pauseOnExceptionsState == PauseOnAllExceptions || (m_pauseOnExceptionsState == PauseOnUncaughtExceptions && !hasCatchHandler)) {
Note:
See TracChangeset
for help on using the changeset viewer.