Index: src/promise.js |
diff --git a/src/promise.js b/src/promise.js |
index 6fc7c73a8259a34d5344423231a30dd4fe18f6c6..b798fb9faf270ce8dd78111d4f3ad6badc3f8faf 100644 |
--- a/src/promise.js |
+++ b/src/promise.js |
@@ -366,7 +366,7 @@ function PromiseHasUserDefinedRejectHandler() { |
%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 @@ InstallFunctions(GlobalPromise, DONT_ENUM, [ |
"resolve", PromiseCast |
]); |
-InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [ |
+$installFunctions(GlobalPromise.prototype, DONT_ENUM, [ |
"chain", PromiseChain, |
"then", PromiseThen, |
"catch", PromiseCatch |