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

Unified Diff: test/mjsunit/es6/debug-step-into-constructor.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/es6/debug-step-into-constructor.js
diff --git a/test/mjsunit/es6/debug-step-into-constructor.js b/test/mjsunit/es6/debug-step-into-constructor.js
index 1e903256fd0a0b8ff9bfee270896731bcd19e833..96cdc931592ec717154a356d06621efbb17f3893 100644
--- a/test/mjsunit/es6/debug-step-into-constructor.js
+++ b/test/mjsunit/es6/debug-step-into-constructor.js
@@ -12,7 +12,7 @@ var done, stepCount;
function listener(event, execState, eventData, data) {
if (event == Debug.DebugEvent.Break) {
if (!done) {
- execState.prepareStep(Debug.StepAction.StepInto);
+ execState.prepareStep(Debug.StepAction.StepIn);
var s = execState.frame().sourceLineText();
assertTrue(s.indexOf('// ' + stepCount + '.') !== -1);
stepCount++;

Powered by Google App Engine
This is Rietveld 408576698