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

Unified Diff: test/debugger/test-api.js

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
« src/debug/debug.cc ('K') | « test/debugger/debug/debug-stepframe-clearing.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/test-api.js
diff --git a/test/debugger/test-api.js b/test/debugger/test-api.js
index 13c0a2d85aea7c0ca639127f76696539d3c79cd7..2dec3248b329639f787ef83c1c3c95501f3d6933 100644
--- a/test/debugger/test-api.js
+++ b/test/debugger/test-api.js
@@ -38,7 +38,6 @@ class DebugWrapper {
this.StepAction = { StepOut: 0,
StepNext: 1,
StepIn: 2,
- StepFrame: 3,
};
// The different types of scripts matching enum ScriptType in objects.h.
@@ -418,7 +417,6 @@ class DebugWrapper {
case this.StepAction.StepOut: this.stepOut(); break;
case this.StepAction.StepNext: this.stepOver(); break;
case this.StepAction.StepIn: this.stepInto(); break;
- case this.StepAction.StepFrame: %PrepareStepFrame(); break;
default: %AbortJS("Unsupported StepAction"); break;
}
}
« src/debug/debug.cc ('K') | « test/debugger/debug/debug-stepframe-clearing.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698