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

Unified Diff: test/mjsunit/es6/debug-step-into-class-extends.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-class-extends.js
diff --git a/test/mjsunit/es6/debug-step-into-class-extends.js b/test/mjsunit/es6/debug-step-into-class-extends.js
index c368414ffc3509099f5c14d4d6c665af1b28d77a..6c887ab08d11d9c2e0a6386d3ca01a5425a21717 100644
--- a/test/mjsunit/es6/debug-step-into-class-extends.js
+++ b/test/mjsunit/es6/debug-step-into-class-extends.js
@@ -14,7 +14,7 @@ var stepCount = 0;
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