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

Unified Diff: test/mjsunit/debug-break-native.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-break-native.js
diff --git a/test/mjsunit/debug-break-native.js b/test/mjsunit/debug-break-native.js
index 11d7274929c5bbc989bb7890e0c07c0d91d0492b..3e6fff42b57b7ddb89ef04342bf92cd468066dc6 100644
--- a/test/mjsunit/debug-break-native.js
+++ b/test/mjsunit/debug-break-native.js
@@ -10,7 +10,7 @@ var exception = null;
function breakListener(event, exec_state, event_data, data) {
if (event != Debug.DebugEvent.Break) return;
try {
- exec_state.prepareStep(Debug.StepAction.StepIn, 1);
+ exec_state.prepareStep(Debug.StepAction.StepIn);
// Assert that the break happens at an intended location.
assertTrue(exec_state.frame(0).sourceLineText().indexOf("// break") > 0);
} catch (e) {

Powered by Google App Engine
This is Rietveld 408576698