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

Side by Side Diff: test/mjsunit/es6/debug-promises/reentry.js

Issue 2487673002: [debugger] Basic scope functionality and exception events in wrapper (Closed)
Patch Set: Formatting 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 reentry of special try catch for Promises.
8
9 Debug = debug.Debug;
10
11 Debug.setBreakOnUncaughtException();
12 Debug.setListener(function(event, exec_state, event_data, data) { });
13
14 var p = new Promise(function(resolve, reject) { resolve(); });
15 var q = p.then(function() {
16 new Promise(function(resolve, reject) { resolve(); });
17 });
OLDNEW
« no previous file with comments | « test/mjsunit/es6/debug-promises/promise-race-caught.js ('k') | test/mjsunit/es6/debug-promises/reject-caught-late.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698