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

Unified Diff: src/debug.cc

Issue 369523002: Revert "Postpone termination exceptions in debug scope." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 months 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.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug.cc
diff --git a/src/debug.cc b/src/debug.cc
index 01412a12d228c499629802f0ca554096761b6802..b19b47e4fa26df3cab0f2ab6901b42f3d7c0f654 100644
--- a/src/debug.cc
+++ b/src/debug.cc
@@ -3074,12 +3074,9 @@ void Debug::ProcessDebugMessages(bool debug_command_only) {
}
-DebugScope::DebugScope(Debug* debug)
- : debug_(debug),
- prev_(debug->debugger_entry()),
- save_(debug_->isolate_),
- no_termination_exceptons_(debug_->isolate_,
- StackGuard::TERMINATE_EXECUTION) {
+DebugScope::DebugScope(Debug* debug) : debug_(debug),
+ prev_(debug->debugger_entry()),
+ save_(debug_->isolate_) {
// Link recursive debugger entry.
debug_->thread_local_.current_debug_scope_ = this;
« no previous file with comments | « src/debug.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698