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

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

Issue 2497973002: [debug-wrapper] Further extend the debug wrapper (Closed)
Patch Set: Address comments 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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 // Test debug events when we only listen to uncaught exceptions and 6 // Test debug events when we only listen to uncaught exceptions and
8 // the Promise is rejected in the Promise constructor. 7 // the Promise is rejected in the Promise constructor.
9 // We expect an Exception debug event with a promise to be triggered. 8 // We expect an Exception debug event with a promise to be triggered.
10 9
11 Debug = debug.Debug; 10 Debug = debug.Debug;
12 11
13 var steps = 0; 12 var steps = 0;
14 var exception = null; 13 var exception = null;
15 14
16 function listener(event, exec_state, event_data, data) { 15 function listener(event, exec_state, event_data, data) {
17 try { 16 try {
18 if (event == Debug.DebugEvent.Exception) { 17 if (event == Debug.DebugEvent.Exception) {
19 steps++; 18 steps++;
20 assertEquals("uncaught", event_data.exception().message); 19 assertEquals("uncaught", event_data.exception().message);
21 assertTrue(event_data.promise() instanceof Promise);
22 assertTrue(event_data.uncaught()); 20 assertTrue(event_data.uncaught());
23 // Assert that the debug event is triggered at the throw site. 21 // Assert that the debug event is triggered at the throw site.
24 assertTrue(exec_state.frame(0).sourceLineText().indexOf("// event") > 0); 22 assertTrue(exec_state.frame(0).sourceLineText().indexOf("// event") > 0);
25 } 23 }
26 } catch (e) { 24 } catch (e) {
27 exception = e; 25 exception = e;
28 } 26 }
29 } 27 }
30 28
31 Debug.setBreakOnUncaughtException(); 29 Debug.setBreakOnUncaughtException();
32 Debug.setListener(listener); 30 Debug.setListener(listener);
33 31
34 var p = new Promise(function(resolve, reject) { 32 var p = new Promise(function(resolve, reject) {
35 reject(new Error("uncaught")); // event 33 reject(new Error("uncaught")); // event
36 }); 34 });
37 35
38 assertEquals(1, steps); 36 assertEquals(1, steps);
39 assertNull(exception); 37 assertNull(exception);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698