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

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

Issue 2514303003: [debug-wrapper] Implement StepFrame through runtime (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « test/debugger/debug/debug-stepframe-clearing.js ('k') | test/mjsunit/debug-stepframe.js » ('j') | 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 a9bcaf213af25d3147b463cf381741365f5fc7ca..f2d20d082f71ff932cbd58c4cab4642b8f46a1b0 100644
--- a/test/debugger/test-api.js
+++ b/test/debugger/test-api.js
@@ -377,6 +377,7 @@ 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;
}
}
« no previous file with comments | « test/debugger/debug/debug-stepframe-clearing.js ('k') | test/mjsunit/debug-stepframe.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698