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

Unified Diff: test/cctest/wasm/test-wasm-breakpoints.cc

Issue 2650943011: [debug] remove StepFrame (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
Index: test/cctest/wasm/test-wasm-breakpoints.cc
diff --git a/test/cctest/wasm/test-wasm-breakpoints.cc b/test/cctest/wasm/test-wasm-breakpoints.cc
index 668e0e4fc0dab1a32902300921567849f42275ae..57f1836f9819100ddd078b5a14635335d7b98761 100644
--- a/test/cctest/wasm/test-wasm-breakpoints.cc
+++ b/test/cctest/wasm/test-wasm-breakpoints.cc
@@ -59,8 +59,7 @@ class BreakHandler {
Continue = StepAction::LastStepAction + 1,
StepNext = StepAction::StepNext,
StepIn = StepAction::StepIn,
- StepOut = StepAction::StepOut,
- StepFrame = StepAction::StepFrame
+ StepOut = StepAction::StepOut
};
struct BreakPoint {
int position;
@@ -111,7 +110,6 @@ class BreakHandler {
case StepNext:
case StepIn:
case StepOut:
- case StepFrame:
isolate_->debug()->PrepareStep(static_cast<StepAction>(next_action));
break;
default:

Powered by Google App Engine
This is Rietveld 408576698