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

Unified Diff: src/debug/debug.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
Index: src/debug/debug.js
diff --git a/src/debug/debug.js b/src/debug/debug.js
index 909a89e5f2a2652e5523dbb3bef386c66791cd0e..88579c2108df7923f26052e403b986f3456bb6c3 100644
--- a/src/debug/debug.js
+++ b/src/debug/debug.js
@@ -51,8 +51,7 @@ Debug.ExceptionBreak = { Caught : 0,
// The different types of steps.
Debug.StepAction = { StepOut: 0,
StepNext: 1,
- StepIn: 2,
- StepFrame: 3 };
+ StepIn: 2 };
// The different types of scripts matching enum ScriptType in objects.h.
Debug.ScriptType = { Native: 0,
@@ -828,8 +827,7 @@ function ExecutionState(break_id) {
ExecutionState.prototype.prepareStep = function(action) {
if (action === Debug.StepAction.StepIn ||
action === Debug.StepAction.StepOut ||
- action === Debug.StepAction.StepNext ||
- action === Debug.StepAction.StepFrame) {
+ action === Debug.StepAction.StepNext) {
return %PrepareStep(this.break_id, action);
}
throw %make_type_error(kDebuggerType);

Powered by Google App Engine
This is Rietveld 408576698