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

Side by Side Diff: test/debugger/debug/ignition/debugger-statement.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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: --ignition-filter=f --expose-debug-as debug 5 // Flags: --ignition-filter=f
6 6
7 var Debug = debug.Debug; 7 var Debug = debug.Debug;
8 8
9 var break_count = 0; 9 var break_count = 0;
10 10
11 function f() { 11 function f() {
12 debugger; 12 debugger;
13 } 13 }
14 14
15 function listener(event, exec_data) { 15 function listener(event, exec_data) {
16 if (event != Debug.DebugEvent.Break) return; 16 if (event != Debug.DebugEvent.Break) return;
17 break_count++; 17 break_count++;
18 } 18 }
19 19
20 f(); 20 f();
21 assertEquals(0, break_count); 21 assertEquals(0, break_count);
22 22
23 Debug.setListener(listener); 23 Debug.setListener(listener);
24 24
25 f(); 25 f();
26 assertEquals(1, break_count); 26 assertEquals(1, break_count);
27 27
28 Debug.setListener(null); 28 Debug.setListener(null);
29 29
30 f(); 30 f();
31 assertEquals(1, break_count); 31 assertEquals(1, break_count);
OLDNEW
« no previous file with comments | « test/debugger/debug/ignition/debug-scope-on-return.js ('k') | test/debugger/debug/regress/debug-prepare-step-in.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698