blob: a97ce81012c486de39550d7d3f1152651cfd2a5d [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005// Flags: --expose-debug-as debug --promise-extra
Ben Murdochb8a8cc12014-11-26 15:28:44 +00006
7// Test reentry of special try catch for Promises.
8
9Debug = debug.Debug;
10
11Debug.setBreakOnUncaughtException();
12Debug.setListener(function(event, exec_state, event_data, data) { });
13
14var p = new Promise(function(resolve, reject) { resolve(); });
15var q = p.chain(function() {
16 new Promise(function(resolve, reject) { resolve(); });
17});