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

Unified Diff: test/mjsunit/debug-stepin-construct-call.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-stepin-construct-call.js
diff --git a/test/mjsunit/debug-stepin-construct-call.js b/test/mjsunit/debug-stepin-construct-call.js
index 5e2145591fdb0bf6789fbc097ea7d5cb1ca5261e..7dbf7b1d28db85577a8256c0429efad4b2d216ff 100644
--- a/test/mjsunit/debug-stepin-construct-call.js
+++ b/test/mjsunit/debug-stepin-construct-call.js
@@ -12,7 +12,7 @@ function listener(event, exec_state, event_data, data) {
try {
var source_line = exec_state.frame(0).sourceLineText();
print(source_line);
- exec_state.prepareStep(Debug.StepAction.StepIn, 1);
+ exec_state.prepareStep(Debug.StepAction.StepIn);
break_count++;
} catch (e) {
exception = e;

Powered by Google App Engine
This is Rietveld 408576698