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

Side by Side Diff: test/debugger/debug/ignition/debug-break.js

Issue 2476303003: Revert of [debugger] Migrate more debugger tests to inspector (Closed)
Patch Set: 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
(Empty)
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
3 // found in the LICENSE file.
4
5
6 var Debug = debug.Debug;
7
8 var break_count = 0;
9 var exception = null;
10
11 function listener(event, exec_state, event_data, data) {
12 if (event != Debug.DebugEvent.Break) return;
13 try {
14 break_count++;
15 var line = exec_state.frame(0).sourceLineText();
16 assertTrue(line.indexOf(`B${break_count}`) > 0);
17 } catch (e) {
18 exception = e;
19 }
20 }
21
22 Debug.setListener(listener);
23
24 function g() {
25 throw 1;
26 }
27
28 function f() {
29 try {
30 g(); // B1
31 } catch (e) {}
32 assertEquals(2, break_count); // B2
33 return 1; // B3
34 }
35
36 Debug.setBreakPoint(f, 2, 0);
37 Debug.setBreakPoint(f, 4, 1);
38 Debug.setBreakPoint(f, 5, 1);
39
40 f();
41
42 assertEquals(3, break_count);
43 assertNull(exception);
44
45 Debug.setListener(null);
OLDNEW
« no previous file with comments | « test/debugger/debug/harmony/debug-async-break-on-stack.js ('k') | test/debugger/debug/ignition/debug-break-on-stack.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698