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