| 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:
|
|
|