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

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

Issue 2267033002: Remove --promise-extra flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix syntax for skip Created 4 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/v8.gyp ('k') | test/mjsunit/es6/debug-promises/reject-after-resolve.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/es6/debug-promises/reentry.js
diff --git a/test/mjsunit/es6/debug-promises/reentry.js b/test/mjsunit/es6/debug-promises/reentry.js
index a97ce81012c486de39550d7d3f1152651cfd2a5d..cc98ed9efd1351816dd2715a6f9cde2029960c0c 100644
--- a/test/mjsunit/es6/debug-promises/reentry.js
+++ b/test/mjsunit/es6/debug-promises/reentry.js
@@ -2,7 +2,7 @@
// 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
+// Flags: --expose-debug-as debug
// Test reentry of special try catch for Promises.
@@ -12,6 +12,6 @@ Debug.setBreakOnUncaughtException();
Debug.setListener(function(event, exec_state, event_data, data) { });
var p = new Promise(function(resolve, reject) { resolve(); });
-var q = p.chain(function() {
+var q = p.then(function() {
new Promise(function(resolve, reject) { resolve(); });
});
« no previous file with comments | « src/v8.gyp ('k') | test/mjsunit/es6/debug-promises/reject-after-resolve.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698