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

Unified Diff: test/mjsunit/regress/debug-prepare-step-in.js

Issue 1525173003: [debugger] remove step count parameter from prepare step. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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: test/mjsunit/regress/debug-prepare-step-in.js
diff --git a/test/mjsunit/regress/debug-prepare-step-in.js b/test/mjsunit/regress/debug-prepare-step-in.js
index 60b47f7a5d15ac6df14bb8fbcf6c20c820684db4..93474da695f60e82ee9bf579e966dc765bddc779 100644
--- a/test/mjsunit/regress/debug-prepare-step-in.js
+++ b/test/mjsunit/regress/debug-prepare-step-in.js
@@ -30,7 +30,7 @@
Debug = debug.Debug
function breakListener(event, exec_state, event_data, data) {
- exec_state.prepareStep(Debug.StepAction.StepIn, 1);
+ exec_state.prepareStep(Debug.StepAction.StepIn);
}
Debug.setListener(breakListener);

Powered by Google App Engine
This is Rietveld 408576698