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

Unified Diff: src/debug/debug.cc

Issue 2621883003: Merged: [debugger] fix stepping out of across throwing. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | test/mjsunit/regress/regress-5559.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.cc
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index 5323c13a90902ed4e7d2f033e53cff481a47458f..e93dd3566196f47e3ec30156dea39a2c6f15b63d 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -936,7 +936,7 @@ void Debug::PrepareStepOnThrow() {
it.Advance();
}
- if (last_step_action() == StepNext) {
+ if (last_step_action() == StepNext || last_step_action() == StepOut) {
while (!it.done()) {
Address current_fp = it.frame()->UnpaddedFP();
if (current_fp >= thread_local_.target_fp_) break;
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-5559.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698