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

Side by Side Diff: test/debugger/debug/es6/debug-promises/stepin-constructor.js

Issue 2480223002: [debugger] Migrate more debugger tests to inspector (Closed)
Patch Set: Fix status line Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --expose-debug-as debug
6 5
7 var Debug = debug.Debug; 6 var Debug = debug.Debug;
8 var exception = null; 7 var exception = null;
9 var breaks = []; 8 var breaks = [];
10 9
11 function listener(event, exec_state, event_data, data) { 10 function listener(event, exec_state, event_data, data) {
12 if (event != Debug.DebugEvent.Break) return; 11 if (event != Debug.DebugEvent.Break) return;
13 try { 12 try {
14 breaks.push(exec_state.frame(0).sourceLineText().trimLeft()); 13 breaks.push(exec_state.frame(0).sourceLineText().trimLeft());
15 exec_state.prepareStep(Debug.StepAction.StepIn); 14 exec_state.prepareStep(Debug.StepAction.StepIn);
(...skipping 22 matching lines...) Expand all
38 "print(1);", 37 "print(1);",
39 "print(2);", 38 "print(2);",
40 "print(3);", 39 "print(3);",
41 "resolve();", 40 "resolve();",
42 "}", 41 "}",
43 "Debug.setListener(null);" 42 "Debug.setListener(null);"
44 ]; 43 ];
45 44
46 assertEquals(expected_breaks, breaks); 45 assertEquals(expected_breaks, breaks);
47 assertNull(exception); 46 assertNull(exception);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698