Changeset 206408 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Sep 26, 2016, 7:46:19 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r206405 r206408 584 584 { 585 585 VM& vm = callFrame->vm(); 586 auto catchScope = DECLARE_CATCH_SCOPE(vm);586 auto throwScope = DECLARE_THROW_SCOPE(vm); 587 587 if (Debugger* debugger = callFrame->vmEntryGlobalObject()->debugger()) { 588 588 SuspendExceptionScope scope(&vm); … … 591 591 else 592 592 debugger->didExecuteProgram(callFrame); 593 ASSERT_UNUSED( catchScope, !catchScope.exception());593 ASSERT_UNUSED(throwScope, !throwScope.exception()); 594 594 } 595 595 }
Note:
See TracChangeset
for help on using the changeset viewer.