| Index: src/promise.js
|
| diff --git a/src/promise.js b/src/promise.js
|
| index c0b1e14635560e51d50510de097a58419e89ebde..0233dbebe448a62ca31a720262ba3cb92f22146f 100644
|
| --- a/src/promise.js
|
| +++ b/src/promise.js
|
| @@ -380,7 +380,6 @@ utils.InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [
|
| "catch", PromiseCatch
|
| ]);
|
|
|
| -$promiseHasUserDefinedRejectHandler = PromiseHasUserDefinedRejectHandler;
|
| $promiseStatus = promiseStatus;
|
| $promiseValue = promiseValue;
|
|
|
| @@ -393,6 +392,7 @@ utils.ExportToRuntime(function(to) {
|
| to.PromiseChain = PromiseChain;
|
| to.PromiseCatch = PromiseCatch;
|
| to.PromiseThen = PromiseThen;
|
| + to.PromiseHasUserDefinedRejectHandler = PromiseHasUserDefinedRejectHandler;
|
| });
|
|
|
| })
|
|
|