OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 "use strict"; | 5 "use strict"; |
6 | 6 |
7 // This file relies on the fact that the following declaration has been made | 7 // This file relies on the fact that the following declaration has been made |
8 // in runtime.js: | 8 // in runtime.js: |
9 // var $Object = global.Object | 9 // var $Object = global.Object |
10 // var $WeakMap = global.WeakMap | 10 // var $WeakMap = global.WeakMap |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 } catch (e) { | 292 } catch (e) { |
293 deferred.reject(e) | 293 deferred.reject(e) |
294 } | 294 } |
295 return deferred.promise; | 295 return deferred.promise; |
296 } | 296 } |
297 | 297 |
298 // ------------------------------------------------------------------- | 298 // ------------------------------------------------------------------- |
299 // Install exported functions. | 299 // Install exported functions. |
300 | 300 |
301 %CheckIsBootstrapping(); | 301 %CheckIsBootstrapping(); |
302 %SetProperty(global, 'Promise', $Promise, DONT_ENUM); | 302 %AddProperty(global, 'Promise', $Promise, DONT_ENUM); |
303 InstallFunctions($Promise, DONT_ENUM, [ | 303 InstallFunctions($Promise, DONT_ENUM, [ |
304 "defer", PromiseDeferred, | 304 "defer", PromiseDeferred, |
305 "accept", PromiseResolved, | 305 "accept", PromiseResolved, |
306 "reject", PromiseRejected, | 306 "reject", PromiseRejected, |
307 "all", PromiseAll, | 307 "all", PromiseAll, |
308 "race", PromiseOne, | 308 "race", PromiseOne, |
309 "resolve", PromiseCast | 309 "resolve", PromiseCast |
310 ]); | 310 ]); |
311 InstallFunctions($Promise.prototype, DONT_ENUM, [ | 311 InstallFunctions($Promise.prototype, DONT_ENUM, [ |
312 "chain", PromiseChain, | 312 "chain", PromiseChain, |
313 "then", PromiseThen, | 313 "then", PromiseThen, |
314 "catch", PromiseCatch | 314 "catch", PromiseCatch |
315 ]); | 315 ]); |
316 | 316 |
317 })(); | 317 })(); |
OLD | NEW |