Commit 20b9b454 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Revert "Postpone termination exceptions in debug scope."

This reverts r22144.

TBR=yurys@chromium.org

Review URL: https://codereview.chromium.org/369523002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22145 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ed693eca
......@@ -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;
......
......@@ -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_;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment