Index: Source/bindings/v8/DebuggerScript.js |
diff --git a/Source/bindings/v8/DebuggerScript.js b/Source/bindings/v8/DebuggerScript.js |
index e54115435d4d4d4c6f03b53215342cc16edfd284..bec40048c1233c8111123c12be4f673896ac9761 100644 |
--- a/Source/bindings/v8/DebuggerScript.js |
+++ b/Source/bindings/v8/DebuggerScript.js |
@@ -233,14 +233,12 @@ DebuggerScript.stepIntoStatement = function(execState) |
DebuggerScript.stepOverStatement = function(execState, callFrame) |
{ |
- var frameMirror = callFrame ? callFrame.frameMirror : undefined; |
- execState.prepareStep(Debug.StepAction.StepNext, 1, frameMirror); |
+ execState.prepareStep(Debug.StepAction.StepNext, 1); |
} |
DebuggerScript.stepOutOfFunction = function(execState, callFrame) |
{ |
- var frameMirror = callFrame ? callFrame.frameMirror : undefined; |
- execState.prepareStep(Debug.StepAction.StepOut, 1, frameMirror); |
+ execState.prepareStep(Debug.StepAction.StepOut, 1); |
} |
// Returns array in form: |
@@ -466,8 +464,7 @@ DebuggerScript._frameMirrorToJSCallFrame = function(frameMirror, callerFrame, sc |
"setVariableValue": setVariableValue, |
"stepInPositions": stepInPositions, |
"isAtReturn": isAtReturn, |
- "returnValue": returnValue, |
- "frameMirror": frameMirror |
+ "returnValue": returnValue |
}; |
} |