Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: src/execution.cc

Issue 1527593002: [debugger] flood function for stepping on throw. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: one more item for the black list Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/debug/debug.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/execution.cc
diff --git a/src/execution.cc b/src/execution.cc
index 15f2ffac7436d0e79bdfa55093cc3f8496c59a5a..813e884004b8b96a086e96185d60640080e8c8fe 100644
--- a/src/execution.cc
+++ b/src/execution.cc
@@ -110,10 +110,6 @@ MUST_USE_RESULT MaybeHandle<Object> Invoke(Isolate* isolate, bool is_construct,
DCHECK(has_exception == isolate->has_pending_exception());
if (has_exception) {
isolate->ReportPendingMessages();
- // Reset stepping state when script exits with uncaught exception.
- if (isolate->debug()->is_active()) {
- isolate->debug()->ClearStepping();
- }
return MaybeHandle<Object>();
} else {
isolate->clear_pending_message();
« no previous file with comments | « src/debug/debug.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698