Reviewers: yurys_ooo,
Description:
Revert "Postpone termination exceptions in debug scope."
This reverts r22144.
[email protected]
Please review this at https://codereview.chromium.org/369523002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+3, -7 lines):
M src/debug.h
M src/debug.cc
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;
Index: src/debug.h
diff --git a/src/debug.h b/src/debug.h
index
480a65a220b3d32aa35b2eb57e0f822f69ef0e2c..f5a19d116e67eded144057427b2773f180c65480
100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -702,7 +702,6 @@ class DebugScope BASE_EMBEDDED {
int break_id_; // Previous break id.
bool failed_; // Did the debug context fail to load?
SaveContext save_; // Saves previous context.
- PostponeInterruptsScope no_termination_exceptons_;
};
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.