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

Unified Diff: test/mjsunit/es6/debug-break-default-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-break-default-constructor.js
diff --git a/test/mjsunit/es6/debug-break-default-constructor.js b/test/mjsunit/es6/debug-break-default-constructor.js
index a06c3b52dee412ad680fd11480e06bb260347d91..fc8bebd13d7dcd7945d2adaf752131f96a9603f3 100644
--- a/test/mjsunit/es6/debug-break-default-constructor.js
+++ b/test/mjsunit/es6/debug-break-default-constructor.js
@@ -14,7 +14,7 @@ var step_count = 0;
function listener(event, execState, eventData, data) {
if (event != Debug.DebugEvent.Break) return;
try {
- execState.prepareStep(Debug.StepAction.StepInto);
+ execState.prepareStep(Debug.StepAction.StepIn);
var s = execState.frame().sourceLineText();
step_count++;
assertTrue(s.indexOf('// ' + step_count + '.') >= 0);

Powered by Google App Engine
This is Rietveld 408576698