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

Unified Diff: test/mjsunit/debug-step-turbofan.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/debug-step-turbofan.js
diff --git a/test/mjsunit/debug-step-turbofan.js b/test/mjsunit/debug-step-turbofan.js
index 1710942e9ad0bcbd28d0062e8c5348f8c2c086d9..6c1fceff317398e76798f1a1fe7f09f110dc76ab 100644
--- a/test/mjsunit/debug-step-turbofan.js
+++ b/test/mjsunit/debug-step-turbofan.js
@@ -33,7 +33,7 @@ var break_count = 0;
function listener(event, exec_state, event_data, data) {
if (event != Debug.DebugEvent.Break) return;
try {
- exec_state.prepareStep(Debug.StepAction.StepNext, 1);
+ exec_state.prepareStep(Debug.StepAction.StepNext);
print(exec_state.frame(0).sourceLineText());
var match = exec_state.frame(0).sourceLineText().match(/Break (\d)/);
assertNotNull(match);

Powered by Google App Engine
This is Rietveld 408576698