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

Unified Diff: test/mjsunit/debug-stepin-accessor.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-accessor.js
diff --git a/test/mjsunit/debug-stepin-accessor.js b/test/mjsunit/debug-stepin-accessor.js
index 70acd5ef6ba8c8291178b036d91004221f91bac1..daf86a365287a915acba341c46388330a8f33839 100644
--- a/test/mjsunit/debug-stepin-accessor.js
+++ b/test/mjsunit/debug-stepin-accessor.js
@@ -41,14 +41,14 @@ var expected_function_name = null;
function listener(event, exec_state, event_data, data) {
try {
if (event == Debug.DebugEvent.Break) {
- if (state == 1) {
- exec_state.prepareStep(Debug.StepAction.StepIn, 2);
- state = 2;
- } else if (state == 2) {
+ if (state == 3) {
assertEquals(expected_source_line_text,
event_data.sourceLineText());
assertEquals(expected_function_name, event_data.func().name());
- state = 3;
+ state = 4;
+ } else {
+ exec_state.prepareStep(Debug.StepAction.StepIn);
+ state++;
}
}
} catch(e) {
@@ -241,7 +241,7 @@ for (var n in this) {
state = 1;
this[n]();
assertNull(exception);
- assertEquals(3, state);
+ assertEquals(4, state);
}
// Get rid of the debug event listener.

Powered by Google App Engine
This is Rietveld 408576698