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

Side by Side Diff: test/mjsunit/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
(Empty)
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
3 // found in the LICENSE file.
4
5 // Flags: --expose-debug-as debug
6
7 // Test debug events when we only listen to uncaught exceptions and
8 // the Promise is rejected in the Promise constructor.
9 // We expect an Exception debug event with a promise to be triggered.
10
11 Debug = debug.Debug;
12
13 var steps = 0;
14 var exception = null;
15
16 function listener(event, exec_state, event_data, data) {
17 try {
18 if (event == Debug.DebugEvent.Exception) {
19 steps++;
20 assertEquals("uncaught", event_data.exception().message);
21 assertTrue(event_data.promise() instanceof Promise);
22 assertTrue(event_data.uncaught());
23 // Assert that the debug event is triggered at the throw site.
24 assertTrue(exec_state.frame(0).sourceLineText().indexOf("// event") > 0);
25 }
26 } catch (e) {
27 exception = e;
28 }
29 }
30
31 Debug.setBreakOnUncaughtException();
32 Debug.setListener(listener);
33
34 var p = new Promise(function(resolve, reject) {
35 reject(new Error("uncaught")); // event
36 });
37
38 assertEquals(1, steps);
39 assertNull(exception);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698