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); |