| Index: src/promise.js
|
| diff --git a/src/promise.js b/src/promise.js
|
| index b798fb9faf270ce8dd78111d4f3ad6badc3f8faf..6fc7c73a8259a34d5344423231a30dd4fe18f6c6 100644
|
| --- a/src/promise.js
|
| +++ b/src/promise.js
|
| @@ -366,7 +366,7 @@
|
| %AddNamedProperty(GlobalPromise.prototype, symbolToStringTag, "Promise",
|
| DONT_ENUM | READ_ONLY);
|
|
|
| -$installFunctions(GlobalPromise, DONT_ENUM, [
|
| +InstallFunctions(GlobalPromise, DONT_ENUM, [
|
| "defer", PromiseDeferred,
|
| "accept", PromiseResolved,
|
| "reject", PromiseRejected,
|
| @@ -375,7 +375,7 @@
|
| "resolve", PromiseCast
|
| ]);
|
|
|
| -$installFunctions(GlobalPromise.prototype, DONT_ENUM, [
|
| +InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [
|
| "chain", PromiseChain,
|
| "then", PromiseThen,
|
| "catch", PromiseCatch
|
|
|