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

Unified Diff: src/debug/debug.js

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.cc ('k') | src/runtime/runtime-debug.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.js
diff --git a/src/debug/debug.js b/src/debug/debug.js
index 50bd0a9c06984ba96097c3b12fde117fe065b843..2d9f67a641dae9bb797c27e4ca0601636d630f47 100644
--- a/src/debug/debug.js
+++ b/src/debug/debug.js
@@ -62,9 +62,7 @@ Debug.ExceptionBreak = { Caught : 0,
Debug.StepAction = { StepOut: 0,
StepNext: 1,
StepIn: 2,
- StepMin: 3,
- StepInMin: 4,
- StepFrame: 5 };
+ StepFrame: 3 };
// The different types of scripts matching enum ScriptType in objects.h.
Debug.ScriptType = { Native: 0,
@@ -1479,8 +1477,6 @@ DebugCommandProcessor.prototype.continueRequest_ = function(request, response) {
if (stepaction) {
if (stepaction == 'in') {
action = Debug.StepAction.StepIn;
- } else if (stepaction == 'min') {
- action = Debug.StepAction.StepMin;
} else if (stepaction == 'next') {
action = Debug.StepAction.StepNext;
} else if (stepaction == 'out') {
« no previous file with comments | « src/debug/debug.cc ('k') | src/runtime/runtime-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698