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

Unified Diff: src/runtime/runtime-debug.cc

Issue 1479843002: [debugger] Remove obsolete stepping modes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix one more test Created 5 years, 1 month 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 | « src/debug/debug.js ('k') | test/mjsunit/debug-continue.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime-debug.cc
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc
index 8bdec1061b1f92af06c7938db61fdbe7d9b7c83c..4e180e856ba16ae2db65ca01cc2495bc73976ffb 100644
--- a/src/runtime/runtime-debug.cc
+++ b/src/runtime/runtime-debug.cc
@@ -1232,13 +1232,12 @@ RUNTIME_FUNCTION(Runtime_PrepareStep) {
// Get the step action and check validity.
StepAction step_action = static_cast<StepAction>(NumberToInt32(args[1]));
if (step_action != StepIn && step_action != StepNext &&
- step_action != StepOut && step_action != StepInMin &&
- step_action != StepMin && step_action != StepFrame) {
+ step_action != StepOut && step_action != StepFrame) {
return isolate->Throw(isolate->heap()->illegal_argument_string());
}
if (frame_id != StackFrame::NO_ID && step_action != StepNext &&
- step_action != StepMin && step_action != StepOut) {
+ step_action != StepOut) {
return isolate->ThrowIllegalOperation();
}
« no previous file with comments | « src/debug/debug.js ('k') | test/mjsunit/debug-continue.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698