88c8361b8f
This patch removes Promise functions and methods which are absent from the ES2015 specification when the --es-staging flag is on. The patch is being relanded after being reverted due to an unrelated bug. This version is slightly different as promise_chain is installed on the context regardless of the flag value, so that the Promise::Chain API continues to work until it is deprecated. BUG=v8:3237 R=rossberg LOG=Y Review URL: https://codereview.chromium.org/1513873002 Cr-Commit-Position: refs/heads/master@{#32772}
18 lines
554 B
JavaScript
18 lines
554 B
JavaScript
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --expose-debug-as debug --promise-extra
|
|
|
|
// Test reentry of special try catch for Promises.
|
|
|
|
Debug = debug.Debug;
|
|
|
|
Debug.setBreakOnUncaughtException();
|
|
Debug.setListener(function(event, exec_state, event_data, data) { });
|
|
|
|
var p = new Promise(function(resolve, reject) { resolve(); });
|
|
var q = p.chain(function() {
|
|
new Promise(function(resolve, reject) { resolve(); });
|
|
});
|