traceur-rb 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (255) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +22 -0
  3. data/.rspec +1 -0
  4. data/.ruby-gemset +1 -0
  5. data/.ruby-version +1 -0
  6. data/Gemfile +4 -0
  7. data/Guardfile +8 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +87 -0
  10. data/Rakefile +2 -0
  11. data/lib/js/compile.js +31 -0
  12. data/lib/traceur-rb.rb +1 -0
  13. data/lib/traceur.rb +43 -0
  14. data/lib/traceur/compilation_options.rb +65 -0
  15. data/lib/traceur/compiler.rb +33 -0
  16. data/lib/traceur/configuration.rb +47 -0
  17. data/lib/traceur/node.rb +26 -0
  18. data/lib/traceur/node/command_result.rb +28 -0
  19. data/lib/traceur/node/runner.rb +40 -0
  20. data/lib/traceur/version.rb +3 -0
  21. data/spec/examples/classes.js +12 -0
  22. data/spec/integration/examples_spec.rb +28 -0
  23. data/spec/spec_helper.rb +1 -0
  24. data/spec/traceur/compilation_options_spec.rb +31 -0
  25. data/spec/traceur/configuration_spec.rb +54 -0
  26. data/spec/traceur/node_spec.rb +15 -0
  27. data/traceur-rb.gemspec +25 -0
  28. data/vendor/node_modules/.bin/traceur +3 -0
  29. data/vendor/node_modules/traceur/README.md +40 -0
  30. data/vendor/node_modules/traceur/bin/traceur-runtime.js +2101 -0
  31. data/vendor/node_modules/traceur/bin/traceur.js +23034 -0
  32. data/vendor/node_modules/traceur/node_modules/.bin/semver +125 -0
  33. data/vendor/node_modules/traceur/node_modules/commander/Readme.md +208 -0
  34. data/vendor/node_modules/traceur/node_modules/commander/index.js +852 -0
  35. data/vendor/node_modules/traceur/node_modules/commander/package.json +40 -0
  36. data/vendor/node_modules/traceur/node_modules/q-io/.npmignore +1 -0
  37. data/vendor/node_modules/traceur/node_modules/q-io/.travis.yml +3 -0
  38. data/vendor/node_modules/traceur/node_modules/q-io/CHANGES.md +122 -0
  39. data/vendor/node_modules/traceur/node_modules/q-io/LICENSE +19 -0
  40. data/vendor/node_modules/traceur/node_modules/q-io/README.md +928 -0
  41. data/vendor/node_modules/traceur/node_modules/q-io/buffer-stream.js +59 -0
  42. data/vendor/node_modules/traceur/node_modules/q-io/coverage-report.js +44 -0
  43. data/vendor/node_modules/traceur/node_modules/q-io/deprecate.js +51 -0
  44. data/vendor/node_modules/traceur/node_modules/q-io/fs-boot.js +307 -0
  45. data/vendor/node_modules/traceur/node_modules/q-io/fs-common.js +499 -0
  46. data/vendor/node_modules/traceur/node_modules/q-io/fs-mock.js +547 -0
  47. data/vendor/node_modules/traceur/node_modules/q-io/fs-root.js +105 -0
  48. data/vendor/node_modules/traceur/node_modules/q-io/fs.js +355 -0
  49. data/vendor/node_modules/traceur/node_modules/q-io/fs2http.js +65 -0
  50. data/vendor/node_modules/traceur/node_modules/q-io/http-apps.js +152 -0
  51. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/chain.js +24 -0
  52. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/content.js +93 -0
  53. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/cookie.js +154 -0
  54. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/decorators.js +178 -0
  55. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/fs.js +417 -0
  56. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/html.js +58 -0
  57. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/json.js +78 -0
  58. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/negotiate.js +120 -0
  59. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/proxy.js +27 -0
  60. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/redirect.js +209 -0
  61. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/route.js +125 -0
  62. data/vendor/node_modules/traceur/node_modules/q-io/http-apps/status.js +175 -0
  63. data/vendor/node_modules/traceur/node_modules/q-io/http-cookie.js +75 -0
  64. data/vendor/node_modules/traceur/node_modules/q-io/http.js +378 -0
  65. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/.npmignore +11 -0
  66. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/.travis.yml +4 -0
  67. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/CHANGES.md +78 -0
  68. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/LICENSE.md +21 -0
  69. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/README.md +1285 -0
  70. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/collections.js +22 -0
  71. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/dict.js +142 -0
  72. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/fast-map.js +57 -0
  73. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/fast-set.js +183 -0
  74. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-collection.js +261 -0
  75. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-map.js +186 -0
  76. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-order.js +55 -0
  77. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-set.js +59 -0
  78. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/heap.js +236 -0
  79. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/iterator.js +371 -0
  80. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/list.js +435 -0
  81. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/array-changes.js +247 -0
  82. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/map-changes.js +147 -0
  83. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/property-changes.js +448 -0
  84. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/range-changes.js +139 -0
  85. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/lru-map.js +79 -0
  86. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/lru-set.js +142 -0
  87. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/map.js +60 -0
  88. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/multi-map.js +41 -0
  89. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/package.json +12 -0
  90. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/sync +7 -0
  91. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/sync.patch +48 -0
  92. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/weak-map.js +590 -0
  93. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/package.json +49 -0
  94. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/set.js +173 -0
  95. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-array.js +274 -0
  96. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-function.js +59 -0
  97. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-object.js +538 -0
  98. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-regexp.js +14 -0
  99. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim.js +6 -0
  100. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array-map.js +49 -0
  101. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array-set.js +51 -0
  102. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array.js +269 -0
  103. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-map.js +61 -0
  104. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-set.js +736 -0
  105. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/tree-log.js +40 -0
  106. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/weak-map.js +1 -0
  107. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/LICENSE +19 -0
  108. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/README.md +66 -0
  109. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/mime.js +114 -0
  110. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/package.json +35 -0
  111. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/test.js +84 -0
  112. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/types/mime.types +1588 -0
  113. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/types/node.types +77 -0
  114. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/CHANGES +15 -0
  115. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/LICENSE +19 -0
  116. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/README +96 -0
  117. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/lib/mimeparse.js +166 -0
  118. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/package.json +43 -0
  119. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/CONTRIBUTING.md +40 -0
  120. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/LICENSE +19 -0
  121. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/README.md +813 -0
  122. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/benchmark/compare-with-callbacks.js +71 -0
  123. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/benchmark/scenarios.js +36 -0
  124. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/package.json +93 -0
  125. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/q.js +1937 -0
  126. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/queue.js +35 -0
  127. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/.gitmodules +6 -0
  128. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/History.md +36 -0
  129. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/Makefile +7 -0
  130. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/Readme.md +38 -0
  131. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/benchmark.js +32 -0
  132. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/examples.js +39 -0
  133. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/index.js +2 -0
  134. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/lib/querystring.js +123 -0
  135. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/package.json +19 -0
  136. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/.gitmodules +3 -0
  137. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/.npmignore +3 -0
  138. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/History.md +128 -0
  139. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/Makefile +53 -0
  140. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/Readme.md +61 -0
  141. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/bin/expresso +856 -0
  142. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/api.html +1080 -0
  143. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/index.html +377 -0
  144. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/index.md +290 -0
  145. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/layout/foot.html +3 -0
  146. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/layout/head.html +42 -0
  147. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/lib/bar.js +4 -0
  148. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/lib/foo.js +16 -0
  149. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/package.json +12 -0
  150. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/assert.test.js +91 -0
  151. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/async.test.js +12 -0
  152. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/bar.test.js +13 -0
  153. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/foo.test.js +14 -0
  154. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/http.test.js +146 -0
  155. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/serial/async.test.js +39 -0
  156. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/serial/http.test.js +48 -0
  157. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/.gitmodules +3 -0
  158. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/History.md +22 -0
  159. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/Makefile +6 -0
  160. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/Readme.md +248 -0
  161. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/examples/runner.js +53 -0
  162. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/index.js +2 -0
  163. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/lib/eql.js +91 -0
  164. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/lib/should.js +548 -0
  165. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/package.json +8 -0
  166. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/test/should.test.js +358 -0
  167. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/test/querystring.test.js +133 -0
  168. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/.npmignore +3 -0
  169. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/.travis.yml +4 -0
  170. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/LICENSE.md +20 -0
  171. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/README.md +33 -0
  172. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/package.json +37 -0
  173. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/test/url2-spec.js +125 -0
  174. data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/url2.js +151 -0
  175. data/vendor/node_modules/traceur/node_modules/q-io/package.json +51 -0
  176. data/vendor/node_modules/traceur/node_modules/q-io/reader.js +133 -0
  177. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/boot-directory-spec.js +47 -0
  178. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/contains-spec.js +11 -0
  179. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/fixtures/hello.txt +1 -0
  180. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/issues/1-spec.js +33 -0
  181. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/make-tree-spec.js +92 -0
  182. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/append-spec.js +41 -0
  183. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/copy-tree-spec.js +57 -0
  184. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/fixture/hello.txt +1 -0
  185. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/link-spec.js +70 -0
  186. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/make-tree-spec.js +109 -0
  187. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/merge-spec.js +67 -0
  188. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/move-spec.js +219 -0
  189. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/object-spec.js +20 -0
  190. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/range-spec.js +26 -0
  191. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/read-spec.js +40 -0
  192. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/remove-directory-spec.js +37 -0
  193. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/remove-tree-spec.js +39 -0
  194. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/root-spec.js +32 -0
  195. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/stat-spec.js +26 -0
  196. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/symbolic-link-spec.js +86 -0
  197. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/working-directory-spec.js +31 -0
  198. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/write-spec.js +73 -0
  199. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/range-spec.js +23 -0
  200. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/range-spec.txt +1 -0
  201. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/read-spec.js +22 -0
  202. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/relative-spec.js +25 -0
  203. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/reroot-spec.js +45 -0
  204. data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/write-spec.js +38 -0
  205. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/cookie-spec.js +52 -0
  206. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/directory-list-spec.js +86 -0
  207. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/01234.txt +1 -0
  208. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/1234.txt +1 -0
  209. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/5678.txt +0 -0
  210. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/9012/3456.txt +0 -0
  211. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/hosts-spec.js +49 -0
  212. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/interpret-range-spec.js +47 -0
  213. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/partial-range-spec.js +186 -0
  214. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/proxy-spec.js +82 -0
  215. data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/symbolic-link-spec.js +110 -0
  216. data/vendor/node_modules/traceur/node_modules/q-io/spec/http/agent-spec.js +96 -0
  217. data/vendor/node_modules/traceur/node_modules/q-io/spec/http/basic-spec.js +96 -0
  218. data/vendor/node_modules/traceur/node_modules/q-io/spec/lib/jasmine-promise.js +42 -0
  219. data/vendor/node_modules/traceur/node_modules/q-io/writer.js +111 -0
  220. data/vendor/node_modules/traceur/node_modules/semver/.npmignore +1 -0
  221. data/vendor/node_modules/traceur/node_modules/semver/LICENSE +27 -0
  222. data/vendor/node_modules/traceur/node_modules/semver/Makefile +24 -0
  223. data/vendor/node_modules/traceur/node_modules/semver/README.md +158 -0
  224. data/vendor/node_modules/traceur/node_modules/semver/bin/semver +125 -0
  225. data/vendor/node_modules/traceur/node_modules/semver/foot.js +6 -0
  226. data/vendor/node_modules/traceur/node_modules/semver/head.js +2 -0
  227. data/vendor/node_modules/traceur/node_modules/semver/package.json +31 -0
  228. data/vendor/node_modules/traceur/node_modules/semver/semver.browser.js +1039 -0
  229. data/vendor/node_modules/traceur/node_modules/semver/semver.browser.js.gz +0 -0
  230. data/vendor/node_modules/traceur/node_modules/semver/semver.js +1043 -0
  231. data/vendor/node_modules/traceur/node_modules/semver/semver.min.js +1 -0
  232. data/vendor/node_modules/traceur/node_modules/semver/semver.min.js.gz +0 -0
  233. data/vendor/node_modules/traceur/node_modules/semver/test/amd.js +15 -0
  234. data/vendor/node_modules/traceur/node_modules/semver/test/gtr.js +173 -0
  235. data/vendor/node_modules/traceur/node_modules/semver/test/index.js +584 -0
  236. data/vendor/node_modules/traceur/node_modules/semver/test/ltr.js +174 -0
  237. data/vendor/node_modules/traceur/node_modules/semver/test/no-module.js +19 -0
  238. data/vendor/node_modules/traceur/package.json +64 -0
  239. data/vendor/node_modules/traceur/src/node/System.js +31 -0
  240. data/vendor/node_modules/traceur/src/node/api.js +124 -0
  241. data/vendor/node_modules/traceur/src/node/command.js +141 -0
  242. data/vendor/node_modules/traceur/src/node/compile-single-file.js +69 -0
  243. data/vendor/node_modules/traceur/src/node/compiler.js +116 -0
  244. data/vendor/node_modules/traceur/src/node/deferred.js +110 -0
  245. data/vendor/node_modules/traceur/src/node/file-util.js +73 -0
  246. data/vendor/node_modules/traceur/src/node/getopt.js +147 -0
  247. data/vendor/node_modules/traceur/src/node/inline-module.js +149 -0
  248. data/vendor/node_modules/traceur/src/node/interpreter.js +33 -0
  249. data/vendor/node_modules/traceur/src/node/nodeLoader.js +41 -0
  250. data/vendor/node_modules/traceur/src/node/require.js +85 -0
  251. data/vendor/node_modules/traceur/src/node/to-amd-compiler.js +33 -0
  252. data/vendor/node_modules/traceur/src/node/to-commonjs-compiler.js +33 -0
  253. data/vendor/node_modules/traceur/src/node/traceur.js +32 -0
  254. data/vendor/node_modules/traceur/traceur +3 -0
  255. metadata +359 -0
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+
3
+ var Q = require("../q");
4
+ var fs = require("fs");
5
+
6
+ suite("A single simple async operation", function () {
7
+ bench("with an immediately-fulfilled promise", function (done) {
8
+ Q().then(done);
9
+ });
10
+
11
+ bench("with direct setImmediate usage", function (done) {
12
+ setImmediate(done);
13
+ });
14
+
15
+ bench("with direct setTimeout(…, 0)", function (done) {
16
+ setTimeout(done, 0);
17
+ });
18
+ });
19
+
20
+ suite("A fs.readFile", function () {
21
+ var denodeified = Q.denodeify(fs.readFile);
22
+
23
+ set("iterations", 1000);
24
+ set("delay", 1000);
25
+
26
+ bench("directly, with callbacks", function (done) {
27
+ fs.readFile(__filename, done);
28
+ });
29
+
30
+ bench("with Q.nfcall", function (done) {
31
+ Q.nfcall(fs.readFile, __filename).then(done);
32
+ });
33
+
34
+ bench("with a Q.denodeify'ed version", function (done) {
35
+ denodeified(__filename).then(done);
36
+ });
37
+
38
+ bench("with manual usage of deferred.makeNodeResolver", function (done) {
39
+ var deferred = Q.defer();
40
+ fs.readFile(__filename, deferred.makeNodeResolver());
41
+ deferred.promise.then(done);
42
+ });
43
+ });
44
+
45
+ suite("1000 operations in parallel", function () {
46
+ function makeCounter(desiredCount, ultimateCallback) {
47
+ var soFar = 0;
48
+ return function () {
49
+ if (++soFar === desiredCount) {
50
+ ultimateCallback();
51
+ }
52
+ };
53
+ }
54
+ var numberOfOps = 1000;
55
+
56
+ bench("with immediately-fulfilled promises", function (done) {
57
+ var counter = makeCounter(numberOfOps, done);
58
+
59
+ for (var i = 0; i < numberOfOps; ++i) {
60
+ Q().then(counter);
61
+ }
62
+ });
63
+
64
+ bench("with direct setImmediate usage", function (done) {
65
+ var counter = makeCounter(numberOfOps, done);
66
+
67
+ for (var i = 0; i < numberOfOps; ++i) {
68
+ setImmediate(counter);
69
+ }
70
+ });
71
+ });
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ var Q = require("../q");
4
+
5
+ suite("Chaining", function () {
6
+ var numberToChain = 1000;
7
+
8
+ bench("Chaining many already-fulfilled promises together", function (done) {
9
+ var currentPromise = Q();
10
+ for (var i = 0; i < numberToChain; ++i) {
11
+ currentPromise = currentPromise.then(function () {
12
+ return Q();
13
+ });
14
+ }
15
+
16
+ currentPromise.then(done);
17
+ });
18
+
19
+ bench("Chaining and then fulfilling the end of the chain", function (done) {
20
+ var deferred = Q.defer();
21
+
22
+ var currentPromise = deferred.promise;
23
+ for (var i = 0; i < numberToChain; ++i) {
24
+ (function () {
25
+ var promiseToReturn = currentPromise;
26
+ currentPromise = Q().then(function () {
27
+ return promiseToReturn;
28
+ });
29
+ }());
30
+ }
31
+
32
+ currentPromise.then(done);
33
+
34
+ deferred.resolve();
35
+ });
36
+ });
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "q",
3
+ "version": "0.9.7",
4
+ "description": "A library for promises (CommonJS/Promises/A,B,D)",
5
+ "homepage": "https://github.com/kriskowal/q",
6
+ "author": {
7
+ "name": "Kris Kowal",
8
+ "email": "kris@cixar.com",
9
+ "url": "https://github.com/kriskowal"
10
+ },
11
+ "keywords": [
12
+ "q",
13
+ "promise",
14
+ "promises",
15
+ "promises-a",
16
+ "promises-aplus",
17
+ "deferred",
18
+ "future",
19
+ "async",
20
+ "flow control",
21
+ "fluent",
22
+ "browser",
23
+ "node"
24
+ ],
25
+ "contributors": [
26
+ {
27
+ "name": "Kris Kowal",
28
+ "email": "kris@cixar.com",
29
+ "url": "https://github.com/kriskowal"
30
+ },
31
+ {
32
+ "name": "Irakli Gozalishvili",
33
+ "email": "rfobic@gmail.com",
34
+ "url": "http://jeditoolkit.com"
35
+ },
36
+ {
37
+ "name": "Domenic Denicola",
38
+ "email": "domenic@domenicdenicola.com",
39
+ "url": "http://domenicdenicola.com"
40
+ }
41
+ ],
42
+ "bugs": {
43
+ "url": "http://github.com/kriskowal/q/issues"
44
+ },
45
+ "license": {
46
+ "type": "MIT",
47
+ "url": "http://github.com/kriskowal/q/raw/master/LICENSE"
48
+ },
49
+ "main": "q.js",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git://github.com/kriskowal/q.git"
53
+ },
54
+ "engines": {
55
+ "node": ">=0.6.0",
56
+ "teleport": ">=0.2.0"
57
+ },
58
+ "dependencies": {},
59
+ "devDependencies": {
60
+ "jshint": "~2.1.9",
61
+ "cover": "*",
62
+ "jasmine-node": "1.11.0",
63
+ "opener": "*",
64
+ "promises-aplus-tests": "1.x",
65
+ "grunt": "~0.4.1",
66
+ "grunt-cli": "~0.1.9",
67
+ "grunt-contrib-uglify": "~0.2.2",
68
+ "matcha": "~0.2.0"
69
+ },
70
+ "scripts": {
71
+ "test": "jasmine-node spec && promises-aplus-tests spec/aplus-adapter",
72
+ "test-browser": "opener spec/q-spec.html",
73
+ "benchmark": "matcha",
74
+ "lint": "jshint q.js",
75
+ "cover": "cover run node_modules/jasmine-node/bin/jasmine-node spec && cover report html && opener cover_html/index.html",
76
+ "minify": "grunt",
77
+ "prepublish": "grunt"
78
+ },
79
+ "overlay": {
80
+ "teleport": {
81
+ "dependencies": {
82
+ "system": ">=0.0.4"
83
+ }
84
+ }
85
+ },
86
+ "directories": {
87
+ "test": "./spec"
88
+ },
89
+ "readme": "[![Build Status](https://secure.travis-ci.org/kriskowal/q.png?branch=master)](http://travis-ci.org/kriskowal/q)\n\n<a href=\"http://promises-aplus.github.com/promises-spec\">\n <img src=\"http://promises-aplus.github.com/promises-spec/assets/logo-small.png\"\n align=\"right\" alt=\"Promises/A+ logo\" />\n</a>\n\nIf a function cannot return a value or throw an exception without\nblocking, it can return a promise instead. A promise is an object\nthat represents the return value or the thrown exception that the\nfunction may eventually provide. A promise can also be used as a\nproxy for a [remote object][Q-Connection] to overcome latency.\n\n[Q-Connection]: https://github.com/kriskowal/q-connection\n\nOn the first pass, promises can mitigate the “[Pyramid of\nDoom][POD]”: the situation where code marches to the right faster\nthan it marches forward.\n\n[POD]: http://calculist.org/blog/2011/12/14/why-coroutines-wont-work-on-the-web/\n\n```javascript\nstep1(function (value1) {\n step2(value1, function(value2) {\n step3(value2, function(value3) {\n step4(value3, function(value4) {\n // Do something with value4\n });\n });\n });\n});\n```\n\nWith a promise library, you can flatten the pyramid.\n\n```javascript\nQ.fcall(promisedStep1)\n.then(promisedStep2)\n.then(promisedStep3)\n.then(promisedStep4)\n.then(function (value4) {\n // Do something with value4\n})\n.catch(function (error) {\n // Handle any error from all above steps\n})\n.done();\n```\n\nWith this approach, you also get implicit error propagation, just like `try`,\n`catch`, and `finally`. An error in `promisedStep1` will flow all the way to\nthe `catch` function, where it’s caught and handled. (Here `promisedStepN` is\na version of `stepN` that returns a promise.)\n\nThe callback approach is called an “inversion of control”.\nA function that accepts a callback instead of a return value\nis saying, “Don’t call me, I’ll call you.”. Promises\n[un-invert][IOC] the inversion, cleanly separating the input\narguments from control flow arguments. This simplifies the\nuse and creation of API’s, particularly variadic,\nrest and spread arguments.\n\n[IOC]: http://www.slideshare.net/domenicdenicola/callbacks-promises-and-coroutines-oh-my-the-evolution-of-asynchronicity-in-javascript\n\n\n## Getting Started\n\nThe Q module can be loaded as:\n\n- A ``<script>`` tag (creating a ``Q`` global variable): ~2.5 KB minified and\n gzipped.\n- A Node.js and CommonJS module, available in [npm](https://npmjs.org/) as\n the [q](https://npmjs.org/package/q) package\n- An AMD module\n- A [component](https://github.com/component/component) as ``microjs/q``\n- Using [bower](http://bower.io/) as ``q``\n- Using [NuGet](http://nuget.org/) as [Q](https://nuget.org/packages/q)\n\nQ can exchange promises with jQuery, Dojo, When.js, WinJS, and more.\n\n## Resources\n\nOur [wiki][] contains a number of useful resources, including:\n\n- A method-by-method [Q API reference][reference].\n- A growing [examples gallery][examples], showing how Q can be used to make\n everything better. From XHR to database access to accessing the Flickr API,\n Q is there for you.\n- There are many libraries that produce and consume Q promises for everything\n from file system/database access or RPC to templating. For a list of some of\n the more popular ones, see [Libraries][].\n- If you want materials that introduce the promise concept generally, and the\n below tutorial isn't doing it for you, check out our collection of\n [presentations, blog posts, and podcasts][resources].\n- A guide for those [coming from jQuery's `$.Deferred`][jquery].\n\nWe'd also love to have you join the Q-Continuum [mailing list][].\n\n[wiki]: https://github.com/kriskowal/q/wiki\n[reference]: https://github.com/kriskowal/q/wiki/API-Reference\n[examples]: https://github.com/kriskowal/q/wiki/Examples-Gallery\n[Libraries]: https://github.com/kriskowal/q/wiki/Libraries\n[resources]: https://github.com/kriskowal/q/wiki/General-Promise-Resources\n[jquery]: https://github.com/kriskowal/q/wiki/Coming-from-jQuery\n[mailing list]: https://groups.google.com/forum/#!forum/q-continuum\n\n\n## Tutorial\n\nPromises have a ``then`` method, which you can use to get the eventual\nreturn value (fulfillment) or thrown exception (rejection).\n\n```javascript\npromiseMeSomething()\n.then(function (value) {\n}, function (reason) {\n});\n```\n\nIf ``promiseMeSomething`` returns a promise that gets fulfilled later\nwith a return value, the first function (the fulfillment handler) will be\ncalled with the value. However, if the ``promiseMeSomething`` function\ngets rejected later by a thrown exception, the second function (the\nrejection handler) will be called with the exception.\n\nNote that resolution of a promise is always asynchronous: that is, the\nfulfillment or rejection handler will always be called in the next turn of the\nevent loop (i.e. `process.nextTick` in Node). This gives you a nice\nguarantee when mentally tracing the flow of your code, namely that\n``then`` will always return before either handler is executed.\n\nIn this tutorial, we begin with how to consume and work with promises. We'll\ntalk about how to create them, and thus create functions like\n`promiseMeSomething` that return promises, [below](#the-beginning).\n\n\n### Propagation\n\nThe ``then`` method returns a promise, which in this example, I’m\nassigning to ``outputPromise``.\n\n```javascript\nvar outputPromise = getInputPromise()\n.then(function (input) {\n}, function (reason) {\n});\n```\n\nThe ``outputPromise`` variable becomes a new promise for the return\nvalue of either handler. Since a function can only either return a\nvalue or throw an exception, only one handler will ever be called and it\nwill be responsible for resolving ``outputPromise``.\n\n- If you return a value in a handler, ``outputPromise`` will get\n fulfilled.\n\n- If you throw an exception in a handler, ``outputPromise`` will get\n rejected.\n\n- If you return a **promise** in a handler, ``outputPromise`` will\n “become” that promise. Being able to become a new promise is useful\n for managing delays, combining results, or recovering from errors.\n\nIf the ``getInputPromise()`` promise gets rejected and you omit the\nrejection handler, the **error** will go to ``outputPromise``:\n\n```javascript\nvar outputPromise = getInputPromise()\n.then(function (value) {\n});\n```\n\nIf the input promise gets fulfilled and you omit the fulfillment handler, the\n**value** will go to ``outputPromise``:\n\n```javascript\nvar outputPromise = getInputPromise()\n.then(null, function (error) {\n});\n```\n\nQ promises provide a ``fail`` shorthand for ``then`` when you are only\ninterested in handling the error:\n\n```javascript\nvar outputPromise = getInputPromise()\n.fail(function (error) {\n});\n```\n\nIf you are writing JavaScript for modern engines only or using\nCoffeeScript, you may use `catch` instead of `fail`.\n\nPromises also have a ``fin`` function that is like a ``finally`` clause.\nThe final handler gets called, with no arguments, when the promise\nreturned by ``getInputPromise()`` either returns a value or throws an\nerror. The value returned or error thrown by ``getInputPromise()``\npasses directly to ``outputPromise`` unless the final handler fails, and\nmay be delayed if the final handler returns a promise.\n\n```javascript\nvar outputPromise = getInputPromise()\n.fin(function () {\n // close files, database connections, stop servers, conclude tests\n});\n```\n\n- If the handler returns a value, the value is ignored\n- If the handler throws an error, the error passes to ``outputPromise``\n- If the handler returns a promise, ``outputPromise`` gets postponed. The\n eventual value or error has the same effect as an immediate return\n value or thrown error: a value would be ignored, an error would be\n forwarded.\n\nIf you are writing JavaScript for modern engines only or using\nCoffeeScript, you may use `finally` instead of `fin`.\n\n### Chaining\n\nThere are two ways to chain promises. You can chain promises either\ninside or outside handlers. The next two examples are equivalent.\n\n```javascript\nreturn getUsername()\n.then(function (username) {\n return getUser(username)\n .then(function (user) {\n // if we get here without an error,\n // the value returned here\n // or the exception thrown here\n // resolves the promise returned\n // by the first line\n })\n});\n```\n\n```javascript\nreturn getUsername()\n.then(function (username) {\n return getUser(username);\n})\n.then(function (user) {\n // if we get here without an error,\n // the value returned here\n // or the exception thrown here\n // resolves the promise returned\n // by the first line\n});\n```\n\nThe only difference is nesting. It’s useful to nest handlers if you\nneed to capture multiple input values in your closure.\n\n```javascript\nfunction authenticate() {\n return getUsername()\n .then(function (username) {\n return getUser(username);\n })\n // chained because we will not need the user name in the next event\n .then(function (user) {\n return getPassword()\n // nested because we need both user and password next\n .then(function (password) {\n if (user.passwordHash !== hash(password)) {\n throw new Error(\"Can't authenticate\");\n }\n });\n });\n}\n```\n\n\n### Combination\n\nYou can turn an array of promises into a promise for the whole,\nfulfilled array using ``all``.\n\n```javascript\nreturn Q.all([\n eventualAdd(2, 2),\n eventualAdd(10, 20)\n]);\n```\n\nIf you have a promise for an array, you can use ``spread`` as a\nreplacement for ``then``. The ``spread`` function “spreads” the\nvalues over the arguments of the fulfillment handler. The rejection handler\nwill get called at the first sign of failure. That is, whichever of\nthe recived promises fails first gets handled by the rejection handler.\n\n```javascript\nfunction eventualAdd(a, b) {\n return Q.spread([a, b], function (a, b) {\n return a + b;\n })\n}\n```\n\nBut ``spread`` calls ``all`` initially, so you can skip it in chains.\n\n```javascript\nreturn getUsername()\n.then(function (username) {\n return [username, getUser(username)];\n})\n.spread(function (username, user) {\n});\n```\n\nThe ``all`` function returns a promise for an array of values. When this\npromise is fulfilled, the array contains the fulfillment values of the original\npromises, in the same order as those promises. If one of the given promises\nis rejected, the returned promise is immediately rejected, not waiting for the\nrest of the batch. If you want to wait for all of the promises to either be\nfulfilled or rejected, you can use ``allSettled``.\n\n```javascript\nQ.allSettled(promises)\n.then(function (results) {\n results.forEach(function (result) {\n if (result.state === \"fulfilled\") {\n var value = result.value;\n } else {\n var reason = result.reason;\n }\n });\n});\n```\n\n\n### Sequences\n\nIf you have a number of promise-producing functions that need\nto be run sequentially, you can of course do so manually:\n\n```javascript\nreturn foo(initialVal).then(bar).then(baz).then(qux);\n```\n\nHowever, if you want to run a dynamically constructed sequence of\nfunctions, you'll want something like this:\n\n```javascript\nvar funcs = [foo, bar, baz, qux];\n\nvar result = Q(initialVal);\nfuncs.forEach(function (f) {\n result = result.then(f);\n});\nreturn result;\n```\n\nYou can make this slightly more compact using `reduce`:\n\n```javascript\nreturn funcs.reduce(function (soFar, f) {\n return soFar.then(f);\n}, Q(initialVal));\n```\n\nOr, you could use th ultra-compact version:\n\n```javascript\nreturn funcs.reduce(Q.when, Q());\n```\n\n### Handling Errors\n\nOne sometimes-unintuive aspect of promises is that if you throw an\nexception in the fulfillment handler, it will not be be caught by the error\nhandler.\n\n```javascript\nreturn foo()\n.then(function (value) {\n throw new Error(\"Can't bar.\");\n}, function (error) {\n // We only get here if \"foo\" fails\n});\n```\n\nTo see why this is, consider the parallel between promises and\n``try``/``catch``. We are ``try``-ing to execute ``foo()``: the error\nhandler represents a ``catch`` for ``foo()``, while the fulfillment handler\nrepresents code that happens *after* the ``try``/``catch`` block.\nThat code then needs its own ``try``/``catch`` block.\n\nIn terms of promises, this means chaining your rejection handler:\n\n```javascript\nreturn foo()\n.then(function (value) {\n throw new Error(\"Can't bar.\");\n})\n.fail(function (error) {\n // We get here with either foo's error or bar's error\n});\n```\n\n### Progress Notification\n\nIt's possible for promises to report their progress, e.g. for tasks that take a\nlong time like a file upload. Not all promises will implement progress\nnotifications, but for those that do, you can consume the progress values using\na third parameter to ``then``:\n\n```javascript\nreturn uploadFile()\n.then(function () {\n // Success uploading the file\n}, function (err) {\n // There was an error, and we get the reason for error\n}, function (progress) {\n // We get notified of the upload's progress as it is executed\n});\n```\n\nLike `fail`, Q also provides a shorthand for progress callbacks\ncalled `progress`:\n\n```javascript\nreturn uploadFile().progress(function (progress) {\n // We get notified of the upload's progress\n});\n```\n\n### The End\n\nWhen you get to the end of a chain of promises, you should either\nreturn the last promise or end the chain. Since handlers catch\nerrors, it’s an unfortunate pattern that the exceptions can go\nunobserved.\n\nSo, either return it,\n\n```javascript\nreturn foo()\n.then(function () {\n return \"bar\";\n});\n```\n\nOr, end it.\n\n```javascript\nfoo()\n.then(function () {\n return \"bar\";\n})\n.done();\n```\n\nEnding a promise chain makes sure that, if an error doesn’t get\nhandled before the end, it will get rethrown and reported.\n\nThis is a stopgap. We are exploring ways to make unhandled errors\nvisible without any explicit handling.\n\n\n### The Beginning\n\nEverything above assumes you get a promise from somewhere else. This\nis the common case. Every once in a while, you will need to create a\npromise from scratch.\n\n#### Using ``Q.fcall``\n\nYou can create a promise from a value using ``Q.fcall``. This returns a\npromise for 10.\n\n```javascript\nreturn Q.fcall(function () {\n return 10;\n});\n```\n\nYou can also use ``fcall`` to get a promise for an exception.\n\n```javascript\nreturn Q.fcall(function () {\n throw new Error(\"Can't do it\");\n});\n```\n\nAs the name implies, ``fcall`` can call functions, or even promised\nfunctions. This uses the ``eventualAdd`` function above to add two\nnumbers.\n\n```javascript\nreturn Q.fcall(eventualAdd, 2, 2);\n```\n\n\n#### Using Deferreds\n\nIf you have to interface with asynchronous functions that are callback-based\ninstead of promise-based, Q provides a few shortcuts (like ``Q.nfcall`` and\nfriends). But much of the time, the solution will be to use *deferreds*.\n\n```javascript\nvar deferred = Q.defer();\nFS.readFile(\"foo.txt\", \"utf-8\", function (error, text) {\n if (error) {\n deferred.reject(new Error(error));\n } else {\n deferred.resolve(text);\n }\n});\nreturn deferred.promise;\n```\n\nNote that a deferred can be resolved with a value or a promise. The\n``reject`` function is a shorthand for resolving with a rejected\npromise.\n\n```javascript\n// this:\ndeferred.reject(new Error(\"Can't do it\"));\n\n// is shorthand for:\nvar rejection = Q.fcall(function () {\n throw new Error(\"Can't do it\");\n});\ndeferred.resolve(rejection);\n```\n\nThis is a simplified implementation of ``Q.delay``.\n\n```javascript\nfunction delay(ms) {\n var deferred = Q.defer();\n setTimeout(deferred.resolve, ms);\n return deferred.promise;\n}\n```\n\nThis is a simplified implementation of ``Q.timeout``\n\n```javascript\nfunction timeout(promise, ms) {\n var deferred = Q.defer();\n Q.when(promise, deferred.resolve);\n delay(ms).then(function () {\n deferred.reject(new Error(\"Timed out\"));\n });\n return deferred.promise;\n}\n```\n\nFinally, you can send a progress notification to the promise with\n``deferred.notify``.\n\nFor illustration, this is a wrapper for XML HTTP requests in the browser. Note\nthat a more [thorough][XHR] implementation would be in order in practice.\n\n[XHR]: https://github.com/montagejs/mr/blob/71e8df99bb4f0584985accd6f2801ef3015b9763/browser.js#L29-L73\n\n```javascript\nfunction requestOkText(url) {\n var request = new XMLHttpRequest();\n var deferred = Q.defer();\n\n request.open(\"GET\", url, true);\n request.onload = onload;\n request.onerror = onerror;\n request.onprogress = onprogress;\n request.send();\n\n function onload() {\n if (request.status === 200) {\n deferred.resolve(request.responseText);\n } else {\n deferred.reject(new Error(\"Status code was \" + request.status));\n }\n }\n\n function onerror() {\n deferred.reject(new Error(\"Can't XHR \" + JSON.stringify(url)));\n }\n\n function onprogress(event) {\n deferred.notify(event.loaded / event.total);\n }\n\n return deferred.promise;\n}\n```\n\nBelow is an example of how to use this ``requestOkText`` function:\n\n```javascript\nrequestOkText(\"http://localhost:3000\")\n.then(function (responseText) {\n // If the HTTP response returns 200 OK, log the response text.\n console.log(responseText);\n}, function (error) {\n // If there's an error or a non-200 status code, log the error.\n console.error(error);\n}, function (progress) {\n // Log the progress as it comes in.\n console.log(\"Request progress: \" + Math.round(progress * 100) + \"%\");\n});\n```\n\n### The Middle\n\nIf you are using a function that may return a promise, but just might\nreturn a value if it doesn’t need to defer, you can use the “static”\nmethods of the Q library.\n\nThe ``when`` function is the static equivalent for ``then``.\n\n```javascript\nreturn Q.when(valueOrPromise, function (value) {\n}, function (error) {\n});\n```\n\nAll of the other methods on a promise have static analogs with the\nsame name.\n\nThe following are equivalent:\n\n```javascript\nreturn Q.all([a, b]);\n```\n\n```javascript\nreturn Q.fcall(function () {\n return [a, b];\n})\n.all();\n```\n\nWhen working with promises provided by other libraries, you should\nconvert it to a Q promise. Not all promise libraries make the same\nguarantees as Q and certainly don’t provide all of the same methods.\nMost libraries only provide a partially functional ``then`` method.\nThis thankfully is all we need to turn them into vibrant Q promises.\n\n```javascript\nreturn Q($.ajax(...))\n.then(function () {\n});\n```\n\nIf there is any chance that the promise you receive is not a Q promise\nas provided by your library, you should wrap it using a Q function.\nYou can even use ``Q.invoke`` as a shorthand.\n\n```javascript\nreturn Q.invoke($, 'ajax', ...)\n.then(function () {\n});\n```\n\n\n### Over the Wire\n\nA promise can serve as a proxy for another object, even a remote\nobject. There are methods that allow you to optimistically manipulate\nproperties or call functions. All of these interactions return\npromises, so they can be chained.\n\n```\ndirect manipulation using a promise as a proxy\n-------------------------- -------------------------------\nvalue.foo promise.get(\"foo\")\nvalue.foo = value promise.put(\"foo\", value)\ndelete value.foo promise.del(\"foo\")\nvalue.foo(...args) promise.post(\"foo\", [args])\nvalue.foo(...args) promise.invoke(\"foo\", ...args)\nvalue(...args) promise.fapply([args])\nvalue(...args) promise.fcall(...args)\n```\n\nIf the promise is a proxy for a remote object, you can shave\nround-trips by using these functions instead of ``then``. To take\nadvantage of promises for remote objects, check out [Q-Connection][].\n\n[Q-Connection]: https://github.com/kriskowal/q-connection\n\nEven in the case of non-remote objects, these methods can be used as\nshorthand for particularly-simple fulfillment handlers. For example, you\ncan replace\n\n```javascript\nreturn Q.fcall(function () {\n return [{ foo: \"bar\" }, { foo: \"baz\" }];\n})\n.then(function (value) {\n return value[0].foo;\n});\n```\n\nwith\n\n```javascript\nreturn Q.fcall(function () {\n return [{ foo: \"bar\" }, { foo: \"baz\" }];\n})\n.get(0)\n.get(\"foo\");\n```\n\n\n### Adapting Node\n\nIf you're working with functions that make use of the Node.js callback pattern,\nwhere callbacks are in the form of `function(err, result)`, Q provides a few\nuseful utility functions for converting between them. The most straightforward\nare probably `Q.nfcall` and `Q.nfapply` (\"Node function call/apply\") for calling\nNode.js-style functions and getting back a promise:\n\n```javascript\nreturn Q.nfcall(FS.readFile, \"foo.txt\", \"utf-8\");\nreturn Q.nfapply(FS.readFile, [\"foo.txt\", \"utf-8\"]);\n```\n\nIf you are working with methods, instead of simple functions, you can easily\nrun in to the usual problems where passing a method to another function—like\n`Q.nfcall`—\"un-binds\" the method from its owner. To avoid this, you can either\nuse `Function.prototype.bind` or some nice shortcut methods we provide:\n\n```javascript\nreturn Q.ninvoke(redisClient, \"get\", \"user:1:id\");\nreturn Q.npost(redisClient, \"get\", [\"user:1:id\"]);\n```\n\nYou can also create reusable wrappers with `Q.denodeify` or `Q.nbind`:\n\n```javascript\nvar readFile = Q.denodeify(FS.readFile);\nreturn readFile(\"foo.txt\", \"utf-8\");\n\nvar redisClientGet = Q.nbind(redisClient.get, redisClient);\nreturn redisClientGet(\"user:1:id\");\n```\n\nFinally, if you're working with raw deferred objects, there is a\n`makeNodeResolver` method on deferreds that can be handy:\n\n```javascript\nvar deferred = Q.defer();\nFS.readFile(\"foo.txt\", \"utf-8\", deferred.makeNodeResolver());\nreturn deferred.promise;\n```\n\n### Long Stack Traces\n\nQ comes with optional support for “long stack traces,” wherein the `stack`\nproperty of `Error` rejection reasons is rewritten to be traced along\nasynchronous jumps instead of stopping at the most recent one. As an example:\n\n```js\nfunction theDepthsOfMyProgram() {\n Q.delay(100).done(function explode() {\n throw new Error(\"boo!\");\n });\n}\n\ntheDepthsOfMyProgram();\n```\n\nusually would give a rather unhelpful stack trace looking something like\n\n```\nError: boo!\n at explode (/path/to/test.js:3:11)\n at _fulfilled (/path/to/test.js:q:54)\n at resolvedValue.promiseDispatch.done (/path/to/q.js:823:30)\n at makePromise.promise.promiseDispatch (/path/to/q.js:496:13)\n at pending (/path/to/q.js:397:39)\n at process.startup.processNextTick.process._tickCallback (node.js:244:9)\n```\n\nBut, if you turn this feature on by setting\n\n```js\nQ.longStackSupport = true;\n```\n\nthen the above code gives a nice stack trace to the tune of\n\n```\nError: boo!\n at explode (/path/to/test.js:3:11)\nFrom previous event:\n at theDepthsOfMyProgram (/path/to/test.js:2:16)\n at Object.<anonymous> (/path/to/test.js:7:1)\n```\n\nNote how you can see the the function that triggered the async operation in the\nstack trace! This is very helpful for debugging, as otherwise you end up getting\nonly the first line, plus a bunch of Q internals, with no sign of where the\noperation started.\n\nThis feature does come with somewhat-serious performance and memory overhead,\nhowever. If you're working with lots of promises, or trying to scale a server\nto many users, you should probably keep it off. But in development, go for it!\n\n## Tests\n\nYou can view the results of the Q test suite [in your browser][tests]!\n\n[tests]: https://rawgithub.com/kriskowal/q/master/spec/q-spec.html\n\n## License\n\nCopyright 2009–2013 Kristopher Michael Kowal\nMIT License (enclosed)\n\n",
90
+ "readmeFilename": "README.md",
91
+ "_id": "q@0.9.7",
92
+ "_from": "q@~0.9.7"
93
+ }
@@ -0,0 +1,1937 @@
1
+ // vim:ts=4:sts=4:sw=4:
2
+ /*!
3
+ *
4
+ * Copyright 2009-2012 Kris Kowal under the terms of the MIT
5
+ * license found at http://github.com/kriskowal/q/raw/master/LICENSE
6
+ *
7
+ * With parts by Tyler Close
8
+ * Copyright 2007-2009 Tyler Close under the terms of the MIT X license found
9
+ * at http://www.opensource.org/licenses/mit-license.html
10
+ * Forked at ref_send.js version: 2009-05-11
11
+ *
12
+ * With parts by Mark Miller
13
+ * Copyright (C) 2011 Google Inc.
14
+ *
15
+ * Licensed under the Apache License, Version 2.0 (the "License");
16
+ * you may not use this file except in compliance with the License.
17
+ * You may obtain a copy of the License at
18
+ *
19
+ * http://www.apache.org/licenses/LICENSE-2.0
20
+ *
21
+ * Unless required by applicable law or agreed to in writing, software
22
+ * distributed under the License is distributed on an "AS IS" BASIS,
23
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24
+ * See the License for the specific language governing permissions and
25
+ * limitations under the License.
26
+ *
27
+ */
28
+
29
+ (function (definition) {
30
+ // Turn off strict mode for this function so we can assign to global.Q
31
+ /* jshint strict: false */
32
+
33
+ // This file will function properly as a <script> tag, or a module
34
+ // using CommonJS and NodeJS or RequireJS module formats. In
35
+ // Common/Node/RequireJS, the module exports the Q API and when
36
+ // executed as a simple <script>, it creates a Q global instead.
37
+
38
+ // Montage Require
39
+ if (typeof bootstrap === "function") {
40
+ bootstrap("promise", definition);
41
+
42
+ // CommonJS
43
+ } else if (typeof exports === "object") {
44
+ module.exports = definition();
45
+
46
+ // RequireJS
47
+ } else if (typeof define === "function" && define.amd) {
48
+ define(definition);
49
+
50
+ // SES (Secure EcmaScript)
51
+ } else if (typeof ses !== "undefined") {
52
+ if (!ses.ok()) {
53
+ return;
54
+ } else {
55
+ ses.makeQ = definition;
56
+ }
57
+
58
+ // <script>
59
+ } else {
60
+ Q = definition();
61
+ }
62
+
63
+ })(function () {
64
+ "use strict";
65
+
66
+ var hasStacks = false;
67
+ try {
68
+ throw new Error();
69
+ } catch (e) {
70
+ hasStacks = !!e.stack;
71
+ }
72
+
73
+ // All code after this point will be filtered from stack traces reported
74
+ // by Q.
75
+ var qStartingLine = captureLine();
76
+ var qFileName;
77
+
78
+ // shims
79
+
80
+ // used for fallback in "allResolved"
81
+ var noop = function () {};
82
+
83
+ // Use the fastest possible means to execute a task in a future turn
84
+ // of the event loop.
85
+ var nextTick =(function () {
86
+ // linked list of tasks (single, with head node)
87
+ var head = {task: void 0, next: null};
88
+ var tail = head;
89
+ var flushing = false;
90
+ var requestTick = void 0;
91
+ var isNodeJS = false;
92
+
93
+ function flush() {
94
+ /* jshint loopfunc: true */
95
+
96
+ while (head.next) {
97
+ head = head.next;
98
+ var task = head.task;
99
+ head.task = void 0;
100
+ var domain = head.domain;
101
+
102
+ if (domain) {
103
+ head.domain = void 0;
104
+ domain.enter();
105
+ }
106
+
107
+ try {
108
+ task();
109
+
110
+ } catch (e) {
111
+ if (isNodeJS) {
112
+ // In node, uncaught exceptions are considered fatal errors.
113
+ // Re-throw them synchronously to interrupt flushing!
114
+
115
+ // Ensure continuation if the uncaught exception is suppressed
116
+ // listening "uncaughtException" events (as domains does).
117
+ // Continue in next event to avoid tick recursion.
118
+ if (domain) {
119
+ domain.exit();
120
+ }
121
+ setTimeout(flush, 0);
122
+ if (domain) {
123
+ domain.enter();
124
+ }
125
+
126
+ throw e;
127
+
128
+ } else {
129
+ // In browsers, uncaught exceptions are not fatal.
130
+ // Re-throw them asynchronously to avoid slow-downs.
131
+ setTimeout(function() {
132
+ throw e;
133
+ }, 0);
134
+ }
135
+ }
136
+
137
+ if (domain) {
138
+ domain.exit();
139
+ }
140
+ }
141
+
142
+ flushing = false;
143
+ }
144
+
145
+ nextTick = function (task) {
146
+ tail = tail.next = {
147
+ task: task,
148
+ domain: isNodeJS && process.domain,
149
+ next: null
150
+ };
151
+
152
+ if (!flushing) {
153
+ flushing = true;
154
+ requestTick();
155
+ }
156
+ };
157
+
158
+ if (typeof process !== "undefined" && process.nextTick) {
159
+ // Node.js before 0.9. Note that some fake-Node environments, like the
160
+ // Mocha test runner, introduce a `process` global without a `nextTick`.
161
+ isNodeJS = true;
162
+
163
+ requestTick = function () {
164
+ process.nextTick(flush);
165
+ };
166
+
167
+ } else if (typeof setImmediate === "function") {
168
+ // In IE10, Node.js 0.9+, or https://github.com/NobleJS/setImmediate
169
+ if (typeof window !== "undefined") {
170
+ requestTick = setImmediate.bind(window, flush);
171
+ } else {
172
+ requestTick = function () {
173
+ setImmediate(flush);
174
+ };
175
+ }
176
+
177
+ } else if (typeof MessageChannel !== "undefined") {
178
+ // modern browsers
179
+ // http://www.nonblocking.io/2011/06/windownexttick.html
180
+ var channel = new MessageChannel();
181
+ // At least Safari Version 6.0.5 (8536.30.1) intermittently cannot create
182
+ // working message ports the first time a page loads.
183
+ channel.port1.onmessage = function () {
184
+ requestTick = requestPortTick;
185
+ channel.port1.onmessage = flush;
186
+ flush();
187
+ };
188
+ var requestPortTick = function () {
189
+ // Opera requires us to provide a message payload, regardless of
190
+ // whether we use it.
191
+ channel.port2.postMessage(0);
192
+ };
193
+ requestTick = function () {
194
+ setTimeout(flush, 0);
195
+ requestPortTick();
196
+ };
197
+
198
+ } else {
199
+ // old browsers
200
+ requestTick = function () {
201
+ setTimeout(flush, 0);
202
+ };
203
+ }
204
+
205
+ return nextTick;
206
+ })();
207
+
208
+ // Attempt to make generics safe in the face of downstream
209
+ // modifications.
210
+ // There is no situation where this is necessary.
211
+ // If you need a security guarantee, these primordials need to be
212
+ // deeply frozen anyway, and if you don’t need a security guarantee,
213
+ // this is just plain paranoid.
214
+ // However, this does have the nice side-effect of reducing the size
215
+ // of the code by reducing x.call() to merely x(), eliminating many
216
+ // hard-to-minify characters.
217
+ // See Mark Miller’s explanation of what this does.
218
+ // http://wiki.ecmascript.org/doku.php?id=conventions:safe_meta_programming
219
+ var call = Function.call;
220
+ function uncurryThis(f) {
221
+ return function () {
222
+ return call.apply(f, arguments);
223
+ };
224
+ }
225
+ // This is equivalent, but slower:
226
+ // uncurryThis = Function_bind.bind(Function_bind.call);
227
+ // http://jsperf.com/uncurrythis
228
+
229
+ var array_slice = uncurryThis(Array.prototype.slice);
230
+
231
+ var array_reduce = uncurryThis(
232
+ Array.prototype.reduce || function (callback, basis) {
233
+ var index = 0,
234
+ length = this.length;
235
+ // concerning the initial value, if one is not provided
236
+ if (arguments.length === 1) {
237
+ // seek to the first value in the array, accounting
238
+ // for the possibility that is is a sparse array
239
+ do {
240
+ if (index in this) {
241
+ basis = this[index++];
242
+ break;
243
+ }
244
+ if (++index >= length) {
245
+ throw new TypeError();
246
+ }
247
+ } while (1);
248
+ }
249
+ // reduce
250
+ for (; index < length; index++) {
251
+ // account for the possibility that the array is sparse
252
+ if (index in this) {
253
+ basis = callback(basis, this[index], index);
254
+ }
255
+ }
256
+ return basis;
257
+ }
258
+ );
259
+
260
+ var array_indexOf = uncurryThis(
261
+ Array.prototype.indexOf || function (value) {
262
+ // not a very good shim, but good enough for our one use of it
263
+ for (var i = 0; i < this.length; i++) {
264
+ if (this[i] === value) {
265
+ return i;
266
+ }
267
+ }
268
+ return -1;
269
+ }
270
+ );
271
+
272
+ var array_map = uncurryThis(
273
+ Array.prototype.map || function (callback, thisp) {
274
+ var self = this;
275
+ var collect = [];
276
+ array_reduce(self, function (undefined, value, index) {
277
+ collect.push(callback.call(thisp, value, index, self));
278
+ }, void 0);
279
+ return collect;
280
+ }
281
+ );
282
+
283
+ var object_create = Object.create || function (prototype) {
284
+ function Type() { }
285
+ Type.prototype = prototype;
286
+ return new Type();
287
+ };
288
+
289
+ var object_hasOwnProperty = uncurryThis(Object.prototype.hasOwnProperty);
290
+
291
+ var object_keys = Object.keys || function (object) {
292
+ var keys = [];
293
+ for (var key in object) {
294
+ if (object_hasOwnProperty(object, key)) {
295
+ keys.push(key);
296
+ }
297
+ }
298
+ return keys;
299
+ };
300
+
301
+ var object_toString = uncurryThis(Object.prototype.toString);
302
+
303
+ function isObject(value) {
304
+ return value === Object(value);
305
+ }
306
+
307
+ // generator related shims
308
+
309
+ // FIXME: Remove this function once ES6 generators are in SpiderMonkey.
310
+ function isStopIteration(exception) {
311
+ return (
312
+ object_toString(exception) === "[object StopIteration]" ||
313
+ exception instanceof QReturnValue
314
+ );
315
+ }
316
+
317
+ // FIXME: Remove this helper and Q.return once ES6 generators are in
318
+ // SpiderMonkey.
319
+ var QReturnValue;
320
+ if (typeof ReturnValue !== "undefined") {
321
+ QReturnValue = ReturnValue;
322
+ } else {
323
+ QReturnValue = function (value) {
324
+ this.value = value;
325
+ };
326
+ }
327
+
328
+ // Until V8 3.19 / Chromium 29 is released, SpiderMonkey is the only
329
+ // engine that has a deployed base of browsers that support generators.
330
+ // However, SM's generators use the Python-inspired semantics of
331
+ // outdated ES6 drafts. We would like to support ES6, but we'd also
332
+ // like to make it possible to use generators in deployed browsers, so
333
+ // we also support Python-style generators. At some point we can remove
334
+ // this block.
335
+ var hasES6Generators;
336
+ try {
337
+ /* jshint evil: true, nonew: false */
338
+ new Function("(function* (){ yield 1; })");
339
+ hasES6Generators = true;
340
+ } catch (e) {
341
+ hasES6Generators = false;
342
+ }
343
+
344
+ // long stack traces
345
+
346
+ var STACK_JUMP_SEPARATOR = "From previous event:";
347
+
348
+ function makeStackTraceLong(error, promise) {
349
+ // If possible, transform the error stack trace by removing Node and Q
350
+ // cruft, then concatenating with the stack trace of `promise`. See #57.
351
+ if (hasStacks &&
352
+ promise.stack &&
353
+ typeof error === "object" &&
354
+ error !== null &&
355
+ error.stack &&
356
+ error.stack.indexOf(STACK_JUMP_SEPARATOR) === -1
357
+ ) {
358
+ var stacks = [];
359
+ for (var p = promise; !!p; p = p.source) {
360
+ if (p.stack) {
361
+ stacks.unshift(p.stack);
362
+ }
363
+ }
364
+ stacks.unshift(error.stack);
365
+
366
+ var concatedStacks = stacks.join("\n" + STACK_JUMP_SEPARATOR + "\n");
367
+ error.stack = filterStackString(concatedStacks);
368
+ }
369
+ }
370
+
371
+ function filterStackString(stackString) {
372
+ var lines = stackString.split("\n");
373
+ var desiredLines = [];
374
+ for (var i = 0; i < lines.length; ++i) {
375
+ var line = lines[i];
376
+
377
+ if (!isInternalFrame(line) && !isNodeFrame(line) && line) {
378
+ desiredLines.push(line);
379
+ }
380
+ }
381
+ return desiredLines.join("\n");
382
+ }
383
+
384
+ function isNodeFrame(stackLine) {
385
+ return stackLine.indexOf("(module.js:") !== -1 ||
386
+ stackLine.indexOf("(node.js:") !== -1;
387
+ }
388
+
389
+ function getFileNameAndLineNumber(stackLine) {
390
+ // Named functions: "at functionName (filename:lineNumber:columnNumber)"
391
+ // In IE10 function name can have spaces ("Anonymous function") O_o
392
+ var attempt1 = /at .+ \((.+):(\d+):(?:\d+)\)$/.exec(stackLine);
393
+ if (attempt1) {
394
+ return [attempt1[1], Number(attempt1[2])];
395
+ }
396
+
397
+ // Anonymous functions: "at filename:lineNumber:columnNumber"
398
+ var attempt2 = /at ([^ ]+):(\d+):(?:\d+)$/.exec(stackLine);
399
+ if (attempt2) {
400
+ return [attempt2[1], Number(attempt2[2])];
401
+ }
402
+
403
+ // Firefox style: "function@filename:lineNumber or @filename:lineNumber"
404
+ var attempt3 = /.*@(.+):(\d+)$/.exec(stackLine);
405
+ if (attempt3) {
406
+ return [attempt3[1], Number(attempt3[2])];
407
+ }
408
+ }
409
+
410
+ function isInternalFrame(stackLine) {
411
+ var fileNameAndLineNumber = getFileNameAndLineNumber(stackLine);
412
+
413
+ if (!fileNameAndLineNumber) {
414
+ return false;
415
+ }
416
+
417
+ var fileName = fileNameAndLineNumber[0];
418
+ var lineNumber = fileNameAndLineNumber[1];
419
+
420
+ return fileName === qFileName &&
421
+ lineNumber >= qStartingLine &&
422
+ lineNumber <= qEndingLine;
423
+ }
424
+
425
+ // discover own file name and line number range for filtering stack
426
+ // traces
427
+ function captureLine() {
428
+ if (!hasStacks) {
429
+ return;
430
+ }
431
+
432
+ try {
433
+ throw new Error();
434
+ } catch (e) {
435
+ var lines = e.stack.split("\n");
436
+ var firstLine = lines[0].indexOf("@") > 0 ? lines[1] : lines[2];
437
+ var fileNameAndLineNumber = getFileNameAndLineNumber(firstLine);
438
+ if (!fileNameAndLineNumber) {
439
+ return;
440
+ }
441
+
442
+ qFileName = fileNameAndLineNumber[0];
443
+ return fileNameAndLineNumber[1];
444
+ }
445
+ }
446
+
447
+ function deprecate(callback, name, alternative) {
448
+ return function () {
449
+ if (typeof console !== "undefined" &&
450
+ typeof console.warn === "function") {
451
+ console.warn(name + " is deprecated, use " + alternative +
452
+ " instead.", new Error("").stack);
453
+ }
454
+ return callback.apply(callback, arguments);
455
+ };
456
+ }
457
+
458
+ // end of shims
459
+ // beginning of real work
460
+
461
+ /**
462
+ * Constructs a promise for an immediate reference, passes promises through, or
463
+ * coerces promises from different systems.
464
+ * @param value immediate reference or promise
465
+ */
466
+ function Q(value) {
467
+ // If the object is already a Promise, return it directly. This enables
468
+ // the resolve function to both be used to created references from objects,
469
+ // but to tolerably coerce non-promises to promises.
470
+ if (isPromise(value)) {
471
+ return value;
472
+ }
473
+
474
+ // assimilate thenables
475
+ if (isPromiseAlike(value)) {
476
+ return coerce(value);
477
+ } else {
478
+ return fulfill(value);
479
+ }
480
+ }
481
+ Q.resolve = Q;
482
+
483
+ /**
484
+ * Performs a task in a future turn of the event loop.
485
+ * @param {Function} task
486
+ */
487
+ Q.nextTick = nextTick;
488
+
489
+ /**
490
+ * Controls whether or not long stack traces will be on
491
+ */
492
+ Q.longStackSupport = false;
493
+
494
+ /**
495
+ * Constructs a {promise, resolve, reject} object.
496
+ *
497
+ * `resolve` is a callback to invoke with a more resolved value for the
498
+ * promise. To fulfill the promise, invoke `resolve` with any value that is
499
+ * not a thenable. To reject the promise, invoke `resolve` with a rejected
500
+ * thenable, or invoke `reject` with the reason directly. To resolve the
501
+ * promise to another thenable, thus putting it in the same state, invoke
502
+ * `resolve` with that other thenable.
503
+ */
504
+ Q.defer = defer;
505
+ function defer() {
506
+ // if "messages" is an "Array", that indicates that the promise has not yet
507
+ // been resolved. If it is "undefined", it has been resolved. Each
508
+ // element of the messages array is itself an array of complete arguments to
509
+ // forward to the resolved promise. We coerce the resolution value to a
510
+ // promise using the `resolve` function because it handles both fully
511
+ // non-thenable values and other thenables gracefully.
512
+ var messages = [], progressListeners = [], resolvedPromise;
513
+
514
+ var deferred = object_create(defer.prototype);
515
+ var promise = object_create(Promise.prototype);
516
+
517
+ promise.promiseDispatch = function (resolve, op, operands) {
518
+ var args = array_slice(arguments);
519
+ if (messages) {
520
+ messages.push(args);
521
+ if (op === "when" && operands[1]) { // progress operand
522
+ progressListeners.push(operands[1]);
523
+ }
524
+ } else {
525
+ nextTick(function () {
526
+ resolvedPromise.promiseDispatch.apply(resolvedPromise, args);
527
+ });
528
+ }
529
+ };
530
+
531
+ // XXX deprecated
532
+ promise.valueOf = deprecate(function () {
533
+ if (messages) {
534
+ return promise;
535
+ }
536
+ var nearerValue = nearer(resolvedPromise);
537
+ if (isPromise(nearerValue)) {
538
+ resolvedPromise = nearerValue; // shorten chain
539
+ }
540
+ return nearerValue;
541
+ }, "valueOf", "inspect");
542
+
543
+ promise.inspect = function () {
544
+ if (!resolvedPromise) {
545
+ return { state: "pending" };
546
+ }
547
+ return resolvedPromise.inspect();
548
+ };
549
+
550
+ if (Q.longStackSupport && hasStacks) {
551
+ try {
552
+ throw new Error();
553
+ } catch (e) {
554
+ // NOTE: don't try to use `Error.captureStackTrace` or transfer the
555
+ // accessor around; that causes memory leaks as per GH-111. Just
556
+ // reify the stack trace as a string ASAP.
557
+ //
558
+ // At the same time, cut off the first line; it's always just
559
+ // "[object Promise]\n", as per the `toString`.
560
+ promise.stack = e.stack.substring(e.stack.indexOf("\n") + 1);
561
+ }
562
+ }
563
+
564
+ // NOTE: we do the checks for `resolvedPromise` in each method, instead of
565
+ // consolidating them into `become`, since otherwise we'd create new
566
+ // promises with the lines `become(whatever(value))`. See e.g. GH-252.
567
+
568
+ function become(newPromise) {
569
+ resolvedPromise = newPromise;
570
+ promise.source = newPromise;
571
+
572
+ array_reduce(messages, function (undefined, message) {
573
+ nextTick(function () {
574
+ newPromise.promiseDispatch.apply(newPromise, message);
575
+ });
576
+ }, void 0);
577
+
578
+ messages = void 0;
579
+ progressListeners = void 0;
580
+ }
581
+
582
+ deferred.promise = promise;
583
+ deferred.resolve = function (value) {
584
+ if (resolvedPromise) {
585
+ return;
586
+ }
587
+
588
+ become(Q(value));
589
+ };
590
+
591
+ deferred.fulfill = function (value) {
592
+ if (resolvedPromise) {
593
+ return;
594
+ }
595
+
596
+ become(fulfill(value));
597
+ };
598
+ deferred.reject = function (reason) {
599
+ if (resolvedPromise) {
600
+ return;
601
+ }
602
+
603
+ become(reject(reason));
604
+ };
605
+ deferred.notify = function (progress) {
606
+ if (resolvedPromise) {
607
+ return;
608
+ }
609
+
610
+ array_reduce(progressListeners, function (undefined, progressListener) {
611
+ nextTick(function () {
612
+ progressListener(progress);
613
+ });
614
+ }, void 0);
615
+ };
616
+
617
+ return deferred;
618
+ }
619
+
620
+ /**
621
+ * Creates a Node-style callback that will resolve or reject the deferred
622
+ * promise.
623
+ * @returns a nodeback
624
+ */
625
+ defer.prototype.makeNodeResolver = function () {
626
+ var self = this;
627
+ return function (error, value) {
628
+ if (error) {
629
+ self.reject(error);
630
+ } else if (arguments.length > 2) {
631
+ self.resolve(array_slice(arguments, 1));
632
+ } else {
633
+ self.resolve(value);
634
+ }
635
+ };
636
+ };
637
+
638
+ /**
639
+ * @param resolver {Function} a function that returns nothing and accepts
640
+ * the resolve, reject, and notify functions for a deferred.
641
+ * @returns a promise that may be resolved with the given resolve and reject
642
+ * functions, or rejected by a thrown exception in resolver
643
+ */
644
+ Q.promise = promise;
645
+ function promise(resolver) {
646
+ if (typeof resolver !== "function") {
647
+ throw new TypeError("resolver must be a function.");
648
+ }
649
+ var deferred = defer();
650
+ try {
651
+ resolver(deferred.resolve, deferred.reject, deferred.notify);
652
+ } catch (reason) {
653
+ deferred.reject(reason);
654
+ }
655
+ return deferred.promise;
656
+ }
657
+
658
+ // XXX experimental. This method is a way to denote that a local value is
659
+ // serializable and should be immediately dispatched to a remote upon request,
660
+ // instead of passing a reference.
661
+ Q.passByCopy = function (object) {
662
+ //freeze(object);
663
+ //passByCopies.set(object, true);
664
+ return object;
665
+ };
666
+
667
+ Promise.prototype.passByCopy = function () {
668
+ //freeze(object);
669
+ //passByCopies.set(object, true);
670
+ return this;
671
+ };
672
+
673
+ /**
674
+ * If two promises eventually fulfill to the same value, promises that value,
675
+ * but otherwise rejects.
676
+ * @param x {Any*}
677
+ * @param y {Any*}
678
+ * @returns {Any*} a promise for x and y if they are the same, but a rejection
679
+ * otherwise.
680
+ *
681
+ */
682
+ Q.join = function (x, y) {
683
+ return Q(x).join(y);
684
+ };
685
+
686
+ Promise.prototype.join = function (that) {
687
+ return Q([this, that]).spread(function (x, y) {
688
+ if (x === y) {
689
+ // TODO: "===" should be Object.is or equiv
690
+ return x;
691
+ } else {
692
+ throw new Error("Can't join: not the same: " + x + " " + y);
693
+ }
694
+ });
695
+ };
696
+
697
+ /**
698
+ * Returns a promise for the first of an array of promises to become fulfilled.
699
+ * @param answers {Array[Any*]} promises to race
700
+ * @returns {Any*} the first promise to be fulfilled
701
+ */
702
+ Q.race = race;
703
+ function race(answerPs) {
704
+ return promise(function(resolve, reject) {
705
+ // Switch to this once we can assume at least ES5
706
+ // answerPs.forEach(function(answerP) {
707
+ // Q(answerP).then(resolve, reject);
708
+ // });
709
+ // Use this in the meantime
710
+ for (var i = 0, len = answerPs.length; i < len; i++) {
711
+ Q(answerPs[i]).then(resolve, reject);
712
+ }
713
+ });
714
+ }
715
+
716
+ Promise.prototype.race = function () {
717
+ return this.then(Q.race);
718
+ };
719
+
720
+ /**
721
+ * Constructs a Promise with a promise descriptor object and optional fallback
722
+ * function. The descriptor contains methods like when(rejected), get(name),
723
+ * set(name, value), post(name, args), and delete(name), which all
724
+ * return either a value, a promise for a value, or a rejection. The fallback
725
+ * accepts the operation name, a resolver, and any further arguments that would
726
+ * have been forwarded to the appropriate method above had a method been
727
+ * provided with the proper name. The API makes no guarantees about the nature
728
+ * of the returned object, apart from that it is usable whereever promises are
729
+ * bought and sold.
730
+ */
731
+ Q.makePromise = Promise;
732
+ function Promise(descriptor, fallback, inspect) {
733
+ if (fallback === void 0) {
734
+ fallback = function (op) {
735
+ return reject(new Error(
736
+ "Promise does not support operation: " + op
737
+ ));
738
+ };
739
+ }
740
+ if (inspect === void 0) {
741
+ inspect = function () {
742
+ return {state: "unknown"};
743
+ };
744
+ }
745
+
746
+ var promise = object_create(Promise.prototype);
747
+
748
+ promise.promiseDispatch = function (resolve, op, args) {
749
+ var result;
750
+ try {
751
+ if (descriptor[op]) {
752
+ result = descriptor[op].apply(promise, args);
753
+ } else {
754
+ result = fallback.call(promise, op, args);
755
+ }
756
+ } catch (exception) {
757
+ result = reject(exception);
758
+ }
759
+ if (resolve) {
760
+ resolve(result);
761
+ }
762
+ };
763
+
764
+ promise.inspect = inspect;
765
+
766
+ // XXX deprecated `valueOf` and `exception` support
767
+ if (inspect) {
768
+ var inspected = inspect();
769
+ if (inspected.state === "rejected") {
770
+ promise.exception = inspected.reason;
771
+ }
772
+
773
+ promise.valueOf = deprecate(function () {
774
+ var inspected = inspect();
775
+ if (inspected.state === "pending" ||
776
+ inspected.state === "rejected") {
777
+ return promise;
778
+ }
779
+ return inspected.value;
780
+ });
781
+ }
782
+
783
+ return promise;
784
+ }
785
+
786
+ Promise.prototype.toString = function () {
787
+ return "[object Promise]";
788
+ };
789
+
790
+ Promise.prototype.then = function (fulfilled, rejected, progressed) {
791
+ var self = this;
792
+ var deferred = defer();
793
+ var done = false; // ensure the untrusted promise makes at most a
794
+ // single call to one of the callbacks
795
+
796
+ function _fulfilled(value) {
797
+ try {
798
+ return typeof fulfilled === "function" ? fulfilled(value) : value;
799
+ } catch (exception) {
800
+ return reject(exception);
801
+ }
802
+ }
803
+
804
+ function _rejected(exception) {
805
+ if (typeof rejected === "function") {
806
+ makeStackTraceLong(exception, self);
807
+ try {
808
+ return rejected(exception);
809
+ } catch (newException) {
810
+ return reject(newException);
811
+ }
812
+ }
813
+ return reject(exception);
814
+ }
815
+
816
+ function _progressed(value) {
817
+ return typeof progressed === "function" ? progressed(value) : value;
818
+ }
819
+
820
+ nextTick(function () {
821
+ self.promiseDispatch(function (value) {
822
+ if (done) {
823
+ return;
824
+ }
825
+ done = true;
826
+
827
+ deferred.resolve(_fulfilled(value));
828
+ }, "when", [function (exception) {
829
+ if (done) {
830
+ return;
831
+ }
832
+ done = true;
833
+
834
+ deferred.resolve(_rejected(exception));
835
+ }]);
836
+ });
837
+
838
+ // Progress propagator need to be attached in the current tick.
839
+ self.promiseDispatch(void 0, "when", [void 0, function (value) {
840
+ var newValue;
841
+ var threw = false;
842
+ try {
843
+ newValue = _progressed(value);
844
+ } catch (e) {
845
+ threw = true;
846
+ if (Q.onerror) {
847
+ Q.onerror(e);
848
+ } else {
849
+ throw e;
850
+ }
851
+ }
852
+
853
+ if (!threw) {
854
+ deferred.notify(newValue);
855
+ }
856
+ }]);
857
+
858
+ return deferred.promise;
859
+ };
860
+
861
+ /**
862
+ * Registers an observer on a promise.
863
+ *
864
+ * Guarantees:
865
+ *
866
+ * 1. that fulfilled and rejected will be called only once.
867
+ * 2. that either the fulfilled callback or the rejected callback will be
868
+ * called, but not both.
869
+ * 3. that fulfilled and rejected will not be called in this turn.
870
+ *
871
+ * @param value promise or immediate reference to observe
872
+ * @param fulfilled function to be called with the fulfilled value
873
+ * @param rejected function to be called with the rejection exception
874
+ * @param progressed function to be called on any progress notifications
875
+ * @return promise for the return value from the invoked callback
876
+ */
877
+ Q.when = when;
878
+ function when(value, fulfilled, rejected, progressed) {
879
+ return Q(value).then(fulfilled, rejected, progressed);
880
+ }
881
+
882
+ Promise.prototype.thenResolve = function (value) {
883
+ return this.then(function () { return value; });
884
+ };
885
+
886
+ Q.thenResolve = function (promise, value) {
887
+ return Q(promise).thenResolve(value);
888
+ };
889
+
890
+ Promise.prototype.thenReject = function (reason) {
891
+ return this.then(function () { throw reason; });
892
+ };
893
+
894
+ Q.thenReject = function (promise, reason) {
895
+ return Q(promise).thenReject(reason);
896
+ };
897
+
898
+ /**
899
+ * If an object is not a promise, it is as "near" as possible.
900
+ * If a promise is rejected, it is as "near" as possible too.
901
+ * If it’s a fulfilled promise, the fulfillment value is nearer.
902
+ * If it’s a deferred promise and the deferred has been resolved, the
903
+ * resolution is "nearer".
904
+ * @param object
905
+ * @returns most resolved (nearest) form of the object
906
+ */
907
+
908
+ // XXX should we re-do this?
909
+ Q.nearer = nearer;
910
+ function nearer(value) {
911
+ if (isPromise(value)) {
912
+ var inspected = value.inspect();
913
+ if (inspected.state === "fulfilled") {
914
+ return inspected.value;
915
+ }
916
+ }
917
+ return value;
918
+ }
919
+
920
+ /**
921
+ * @returns whether the given object is a promise.
922
+ * Otherwise it is a fulfilled value.
923
+ */
924
+ Q.isPromise = isPromise;
925
+ function isPromise(object) {
926
+ return isObject(object) &&
927
+ typeof object.promiseDispatch === "function" &&
928
+ typeof object.inspect === "function";
929
+ }
930
+
931
+ Q.isPromiseAlike = isPromiseAlike;
932
+ function isPromiseAlike(object) {
933
+ return isObject(object) && typeof object.then === "function";
934
+ }
935
+
936
+ /**
937
+ * @returns whether the given object is a pending promise, meaning not
938
+ * fulfilled or rejected.
939
+ */
940
+ Q.isPending = isPending;
941
+ function isPending(object) {
942
+ return isPromise(object) && object.inspect().state === "pending";
943
+ }
944
+
945
+ Promise.prototype.isPending = function () {
946
+ return this.inspect().state === "pending";
947
+ };
948
+
949
+ /**
950
+ * @returns whether the given object is a value or fulfilled
951
+ * promise.
952
+ */
953
+ Q.isFulfilled = isFulfilled;
954
+ function isFulfilled(object) {
955
+ return !isPromise(object) || object.inspect().state === "fulfilled";
956
+ }
957
+
958
+ Promise.prototype.isFulfilled = function () {
959
+ return this.inspect().state === "fulfilled";
960
+ };
961
+
962
+ /**
963
+ * @returns whether the given object is a rejected promise.
964
+ */
965
+ Q.isRejected = isRejected;
966
+ function isRejected(object) {
967
+ return isPromise(object) && object.inspect().state === "rejected";
968
+ }
969
+
970
+ Promise.prototype.isRejected = function () {
971
+ return this.inspect().state === "rejected";
972
+ };
973
+
974
+ //// BEGIN UNHANDLED REJECTION TRACKING
975
+
976
+ // This promise library consumes exceptions thrown in handlers so they can be
977
+ // handled by a subsequent promise. The exceptions get added to this array when
978
+ // they are created, and removed when they are handled. Note that in ES6 or
979
+ // shimmed environments, this would naturally be a `Set`.
980
+ var unhandledReasons = [];
981
+ var unhandledRejections = [];
982
+ var unhandledReasonsDisplayed = false;
983
+ var trackUnhandledRejections = true;
984
+ function displayUnhandledReasons() {
985
+ if (
986
+ !unhandledReasonsDisplayed &&
987
+ typeof window !== "undefined" &&
988
+ !window.Touch &&
989
+ window.console
990
+ ) {
991
+ console.warn("[Q] Unhandled rejection reasons (should be empty):",
992
+ unhandledReasons);
993
+ }
994
+
995
+ unhandledReasonsDisplayed = true;
996
+ }
997
+
998
+ function logUnhandledReasons() {
999
+ for (var i = 0; i < unhandledReasons.length; i++) {
1000
+ var reason = unhandledReasons[i];
1001
+ console.warn("Unhandled rejection reason:", reason);
1002
+ }
1003
+ }
1004
+
1005
+ function resetUnhandledRejections() {
1006
+ unhandledReasons.length = 0;
1007
+ unhandledRejections.length = 0;
1008
+ unhandledReasonsDisplayed = false;
1009
+
1010
+ if (!trackUnhandledRejections) {
1011
+ trackUnhandledRejections = true;
1012
+
1013
+ // Show unhandled rejection reasons if Node exits without handling an
1014
+ // outstanding rejection. (Note that Browserify presently produces a
1015
+ // `process` global without the `EventEmitter` `on` method.)
1016
+ if (typeof process !== "undefined" && process.on) {
1017
+ process.on("exit", logUnhandledReasons);
1018
+ }
1019
+ }
1020
+ }
1021
+
1022
+ function trackRejection(promise, reason) {
1023
+ if (!trackUnhandledRejections) {
1024
+ return;
1025
+ }
1026
+
1027
+ unhandledRejections.push(promise);
1028
+ if (reason && typeof reason.stack !== "undefined") {
1029
+ unhandledReasons.push(reason.stack);
1030
+ } else {
1031
+ unhandledReasons.push("(no stack) " + reason);
1032
+ }
1033
+ displayUnhandledReasons();
1034
+ }
1035
+
1036
+ function untrackRejection(promise) {
1037
+ if (!trackUnhandledRejections) {
1038
+ return;
1039
+ }
1040
+
1041
+ var at = array_indexOf(unhandledRejections, promise);
1042
+ if (at !== -1) {
1043
+ unhandledRejections.splice(at, 1);
1044
+ unhandledReasons.splice(at, 1);
1045
+ }
1046
+ }
1047
+
1048
+ Q.resetUnhandledRejections = resetUnhandledRejections;
1049
+
1050
+ Q.getUnhandledReasons = function () {
1051
+ // Make a copy so that consumers can't interfere with our internal state.
1052
+ return unhandledReasons.slice();
1053
+ };
1054
+
1055
+ Q.stopUnhandledRejectionTracking = function () {
1056
+ resetUnhandledRejections();
1057
+ if (typeof process !== "undefined" && process.on) {
1058
+ process.removeListener("exit", logUnhandledReasons);
1059
+ }
1060
+ trackUnhandledRejections = false;
1061
+ };
1062
+
1063
+ resetUnhandledRejections();
1064
+
1065
+ //// END UNHANDLED REJECTION TRACKING
1066
+
1067
+ /**
1068
+ * Constructs a rejected promise.
1069
+ * @param reason value describing the failure
1070
+ */
1071
+ Q.reject = reject;
1072
+ function reject(reason) {
1073
+ var rejection = Promise({
1074
+ "when": function (rejected) {
1075
+ // note that the error has been handled
1076
+ if (rejected) {
1077
+ untrackRejection(this);
1078
+ }
1079
+ return rejected ? rejected(reason) : this;
1080
+ }
1081
+ }, function fallback() {
1082
+ return this;
1083
+ }, function inspect() {
1084
+ return { state: "rejected", reason: reason };
1085
+ });
1086
+
1087
+ // Note that the reason has not been handled.
1088
+ trackRejection(rejection, reason);
1089
+
1090
+ return rejection;
1091
+ }
1092
+
1093
+ /**
1094
+ * Constructs a fulfilled promise for an immediate reference.
1095
+ * @param value immediate reference
1096
+ */
1097
+ Q.fulfill = fulfill;
1098
+ function fulfill(value) {
1099
+ return Promise({
1100
+ "when": function () {
1101
+ return value;
1102
+ },
1103
+ "get": function (name) {
1104
+ return value[name];
1105
+ },
1106
+ "set": function (name, rhs) {
1107
+ value[name] = rhs;
1108
+ },
1109
+ "delete": function (name) {
1110
+ delete value[name];
1111
+ },
1112
+ "post": function (name, args) {
1113
+ // Mark Miller proposes that post with no name should apply a
1114
+ // promised function.
1115
+ if (name === null || name === void 0) {
1116
+ return value.apply(void 0, args);
1117
+ } else {
1118
+ return value[name].apply(value, args);
1119
+ }
1120
+ },
1121
+ "apply": function (thisp, args) {
1122
+ return value.apply(thisp, args);
1123
+ },
1124
+ "keys": function () {
1125
+ return object_keys(value);
1126
+ }
1127
+ }, void 0, function inspect() {
1128
+ return { state: "fulfilled", value: value };
1129
+ });
1130
+ }
1131
+
1132
+ /**
1133
+ * Converts thenables to Q promises.
1134
+ * @param promise thenable promise
1135
+ * @returns a Q promise
1136
+ */
1137
+ function coerce(promise) {
1138
+ var deferred = defer();
1139
+ nextTick(function () {
1140
+ try {
1141
+ promise.then(deferred.resolve, deferred.reject, deferred.notify);
1142
+ } catch (exception) {
1143
+ deferred.reject(exception);
1144
+ }
1145
+ });
1146
+ return deferred.promise;
1147
+ }
1148
+
1149
+ /**
1150
+ * Annotates an object such that it will never be
1151
+ * transferred away from this process over any promise
1152
+ * communication channel.
1153
+ * @param object
1154
+ * @returns promise a wrapping of that object that
1155
+ * additionally responds to the "isDef" message
1156
+ * without a rejection.
1157
+ */
1158
+ Q.master = master;
1159
+ function master(object) {
1160
+ return Promise({
1161
+ "isDef": function () {}
1162
+ }, function fallback(op, args) {
1163
+ return dispatch(object, op, args);
1164
+ }, function () {
1165
+ return Q(object).inspect();
1166
+ });
1167
+ }
1168
+
1169
+ /**
1170
+ * Spreads the values of a promised array of arguments into the
1171
+ * fulfillment callback.
1172
+ * @param fulfilled callback that receives variadic arguments from the
1173
+ * promised array
1174
+ * @param rejected callback that receives the exception if the promise
1175
+ * is rejected.
1176
+ * @returns a promise for the return value or thrown exception of
1177
+ * either callback.
1178
+ */
1179
+ Q.spread = spread;
1180
+ function spread(value, fulfilled, rejected) {
1181
+ return Q(value).spread(fulfilled, rejected);
1182
+ }
1183
+
1184
+ Promise.prototype.spread = function (fulfilled, rejected) {
1185
+ return this.all().then(function (array) {
1186
+ return fulfilled.apply(void 0, array);
1187
+ }, rejected);
1188
+ };
1189
+
1190
+ /**
1191
+ * The async function is a decorator for generator functions, turning
1192
+ * them into asynchronous generators. Although generators are only part
1193
+ * of the newest ECMAScript 6 drafts, this code does not cause syntax
1194
+ * errors in older engines. This code should continue to work and will
1195
+ * in fact improve over time as the language improves.
1196
+ *
1197
+ * ES6 generators are currently part of V8 version 3.19 with the
1198
+ * --harmony-generators runtime flag enabled. SpiderMonkey has had them
1199
+ * for longer, but under an older Python-inspired form. This function
1200
+ * works on both kinds of generators.
1201
+ *
1202
+ * Decorates a generator function such that:
1203
+ * - it may yield promises
1204
+ * - execution will continue when that promise is fulfilled
1205
+ * - the value of the yield expression will be the fulfilled value
1206
+ * - it returns a promise for the return value (when the generator
1207
+ * stops iterating)
1208
+ * - the decorated function returns a promise for the return value
1209
+ * of the generator or the first rejected promise among those
1210
+ * yielded.
1211
+ * - if an error is thrown in the generator, it propagates through
1212
+ * every following yield until it is caught, or until it escapes
1213
+ * the generator function altogether, and is translated into a
1214
+ * rejection for the promise returned by the decorated generator.
1215
+ */
1216
+ Q.async = async;
1217
+ function async(makeGenerator) {
1218
+ return function () {
1219
+ // when verb is "send", arg is a value
1220
+ // when verb is "throw", arg is an exception
1221
+ function continuer(verb, arg) {
1222
+ var result;
1223
+ if (hasES6Generators) {
1224
+ try {
1225
+ result = generator[verb](arg);
1226
+ } catch (exception) {
1227
+ return reject(exception);
1228
+ }
1229
+ if (result.done) {
1230
+ return result.value;
1231
+ } else {
1232
+ return when(result.value, callback, errback);
1233
+ }
1234
+ } else {
1235
+ // FIXME: Remove this case when SM does ES6 generators.
1236
+ try {
1237
+ result = generator[verb](arg);
1238
+ } catch (exception) {
1239
+ if (isStopIteration(exception)) {
1240
+ return exception.value;
1241
+ } else {
1242
+ return reject(exception);
1243
+ }
1244
+ }
1245
+ return when(result, callback, errback);
1246
+ }
1247
+ }
1248
+ var generator = makeGenerator.apply(this, arguments);
1249
+ var callback = continuer.bind(continuer, "next");
1250
+ var errback = continuer.bind(continuer, "throw");
1251
+ return callback();
1252
+ };
1253
+ }
1254
+
1255
+ /**
1256
+ * The spawn function is a small wrapper around async that immediately
1257
+ * calls the generator and also ends the promise chain, so that any
1258
+ * unhandled errors are thrown instead of forwarded to the error
1259
+ * handler. This is useful because it's extremely common to run
1260
+ * generators at the top-level to work with libraries.
1261
+ */
1262
+ Q.spawn = spawn;
1263
+ function spawn(makeGenerator) {
1264
+ Q.done(Q.async(makeGenerator)());
1265
+ }
1266
+
1267
+ // FIXME: Remove this interface once ES6 generators are in SpiderMonkey.
1268
+ /**
1269
+ * Throws a ReturnValue exception to stop an asynchronous generator.
1270
+ *
1271
+ * This interface is a stop-gap measure to support generator return
1272
+ * values in older Firefox/SpiderMonkey. In browsers that support ES6
1273
+ * generators like Chromium 29, just use "return" in your generator
1274
+ * functions.
1275
+ *
1276
+ * @param value the return value for the surrounding generator
1277
+ * @throws ReturnValue exception with the value.
1278
+ * @example
1279
+ * // ES6 style
1280
+ * Q.async(function* () {
1281
+ * var foo = yield getFooPromise();
1282
+ * var bar = yield getBarPromise();
1283
+ * return foo + bar;
1284
+ * })
1285
+ * // Older SpiderMonkey style
1286
+ * Q.async(function () {
1287
+ * var foo = yield getFooPromise();
1288
+ * var bar = yield getBarPromise();
1289
+ * Q.return(foo + bar);
1290
+ * })
1291
+ */
1292
+ Q["return"] = _return;
1293
+ function _return(value) {
1294
+ throw new QReturnValue(value);
1295
+ }
1296
+
1297
+ /**
1298
+ * The promised function decorator ensures that any promise arguments
1299
+ * are settled and passed as values (`this` is also settled and passed
1300
+ * as a value). It will also ensure that the result of a function is
1301
+ * always a promise.
1302
+ *
1303
+ * @example
1304
+ * var add = Q.promised(function (a, b) {
1305
+ * return a + b;
1306
+ * });
1307
+ * add(Q(a), Q(B));
1308
+ *
1309
+ * @param {function} callback The function to decorate
1310
+ * @returns {function} a function that has been decorated.
1311
+ */
1312
+ Q.promised = promised;
1313
+ function promised(callback) {
1314
+ return function () {
1315
+ return spread([this, all(arguments)], function (self, args) {
1316
+ return callback.apply(self, args);
1317
+ });
1318
+ };
1319
+ }
1320
+
1321
+ /**
1322
+ * sends a message to a value in a future turn
1323
+ * @param object* the recipient
1324
+ * @param op the name of the message operation, e.g., "when",
1325
+ * @param args further arguments to be forwarded to the operation
1326
+ * @returns result {Promise} a promise for the result of the operation
1327
+ */
1328
+ Q.dispatch = dispatch;
1329
+ function dispatch(object, op, args) {
1330
+ return Q(object).dispatch(op, args);
1331
+ }
1332
+
1333
+ Promise.prototype.dispatch = function (op, args) {
1334
+ var self = this;
1335
+ var deferred = defer();
1336
+ nextTick(function () {
1337
+ self.promiseDispatch(deferred.resolve, op, args);
1338
+ });
1339
+ return deferred.promise;
1340
+ };
1341
+
1342
+ /**
1343
+ * Gets the value of a property in a future turn.
1344
+ * @param object promise or immediate reference for target object
1345
+ * @param name name of property to get
1346
+ * @return promise for the property value
1347
+ */
1348
+ Q.get = function (object, key) {
1349
+ return Q(object).dispatch("get", [key]);
1350
+ };
1351
+
1352
+ Promise.prototype.get = function (key) {
1353
+ return this.dispatch("get", [key]);
1354
+ };
1355
+
1356
+ /**
1357
+ * Sets the value of a property in a future turn.
1358
+ * @param object promise or immediate reference for object object
1359
+ * @param name name of property to set
1360
+ * @param value new value of property
1361
+ * @return promise for the return value
1362
+ */
1363
+ Q.set = function (object, key, value) {
1364
+ return Q(object).dispatch("set", [key, value]);
1365
+ };
1366
+
1367
+ Promise.prototype.set = function (key, value) {
1368
+ return this.dispatch("set", [key, value]);
1369
+ };
1370
+
1371
+ /**
1372
+ * Deletes a property in a future turn.
1373
+ * @param object promise or immediate reference for target object
1374
+ * @param name name of property to delete
1375
+ * @return promise for the return value
1376
+ */
1377
+ Q.del = // XXX legacy
1378
+ Q["delete"] = function (object, key) {
1379
+ return Q(object).dispatch("delete", [key]);
1380
+ };
1381
+
1382
+ Promise.prototype.del = // XXX legacy
1383
+ Promise.prototype["delete"] = function (key) {
1384
+ return this.dispatch("delete", [key]);
1385
+ };
1386
+
1387
+ /**
1388
+ * Invokes a method in a future turn.
1389
+ * @param object promise or immediate reference for target object
1390
+ * @param name name of method to invoke
1391
+ * @param value a value to post, typically an array of
1392
+ * invocation arguments for promises that
1393
+ * are ultimately backed with `resolve` values,
1394
+ * as opposed to those backed with URLs
1395
+ * wherein the posted value can be any
1396
+ * JSON serializable object.
1397
+ * @return promise for the return value
1398
+ */
1399
+ // bound locally because it is used by other methods
1400
+ Q.mapply = // XXX As proposed by "Redsandro"
1401
+ Q.post = function (object, name, args) {
1402
+ return Q(object).dispatch("post", [name, args]);
1403
+ };
1404
+
1405
+ Promise.prototype.mapply = // XXX As proposed by "Redsandro"
1406
+ Promise.prototype.post = function (name, args) {
1407
+ return this.dispatch("post", [name, args]);
1408
+ };
1409
+
1410
+ /**
1411
+ * Invokes a method in a future turn.
1412
+ * @param object promise or immediate reference for target object
1413
+ * @param name name of method to invoke
1414
+ * @param ...args array of invocation arguments
1415
+ * @return promise for the return value
1416
+ */
1417
+ Q.send = // XXX Mark Miller's proposed parlance
1418
+ Q.mcall = // XXX As proposed by "Redsandro"
1419
+ Q.invoke = function (object, name /*...args*/) {
1420
+ return Q(object).dispatch("post", [name, array_slice(arguments, 2)]);
1421
+ };
1422
+
1423
+ Promise.prototype.send = // XXX Mark Miller's proposed parlance
1424
+ Promise.prototype.mcall = // XXX As proposed by "Redsandro"
1425
+ Promise.prototype.invoke = function (name /*...args*/) {
1426
+ return this.dispatch("post", [name, array_slice(arguments, 1)]);
1427
+ };
1428
+
1429
+ /**
1430
+ * Applies the promised function in a future turn.
1431
+ * @param object promise or immediate reference for target function
1432
+ * @param args array of application arguments
1433
+ */
1434
+ Q.fapply = function (object, args) {
1435
+ return Q(object).dispatch("apply", [void 0, args]);
1436
+ };
1437
+
1438
+ Promise.prototype.fapply = function (args) {
1439
+ return this.dispatch("apply", [void 0, args]);
1440
+ };
1441
+
1442
+ /**
1443
+ * Calls the promised function in a future turn.
1444
+ * @param object promise or immediate reference for target function
1445
+ * @param ...args array of application arguments
1446
+ */
1447
+ Q["try"] =
1448
+ Q.fcall = function (object /* ...args*/) {
1449
+ return Q(object).dispatch("apply", [void 0, array_slice(arguments, 1)]);
1450
+ };
1451
+
1452
+ Promise.prototype.fcall = function (/*...args*/) {
1453
+ return this.dispatch("apply", [void 0, array_slice(arguments)]);
1454
+ };
1455
+
1456
+ /**
1457
+ * Binds the promised function, transforming return values into a fulfilled
1458
+ * promise and thrown errors into a rejected one.
1459
+ * @param object promise or immediate reference for target function
1460
+ * @param ...args array of application arguments
1461
+ */
1462
+ Q.fbind = function (object /*...args*/) {
1463
+ var promise = Q(object);
1464
+ var args = array_slice(arguments, 1);
1465
+ return function fbound() {
1466
+ return promise.dispatch("apply", [
1467
+ this,
1468
+ args.concat(array_slice(arguments))
1469
+ ]);
1470
+ };
1471
+ };
1472
+ Promise.prototype.fbind = function (/*...args*/) {
1473
+ var promise = this;
1474
+ var args = array_slice(arguments);
1475
+ return function fbound() {
1476
+ return promise.dispatch("apply", [
1477
+ this,
1478
+ args.concat(array_slice(arguments))
1479
+ ]);
1480
+ };
1481
+ };
1482
+
1483
+ /**
1484
+ * Requests the names of the owned properties of a promised
1485
+ * object in a future turn.
1486
+ * @param object promise or immediate reference for target object
1487
+ * @return promise for the keys of the eventually settled object
1488
+ */
1489
+ Q.keys = function (object) {
1490
+ return Q(object).dispatch("keys", []);
1491
+ };
1492
+
1493
+ Promise.prototype.keys = function () {
1494
+ return this.dispatch("keys", []);
1495
+ };
1496
+
1497
+ /**
1498
+ * Turns an array of promises into a promise for an array. If any of
1499
+ * the promises gets rejected, the whole array is rejected immediately.
1500
+ * @param {Array*} an array (or promise for an array) of values (or
1501
+ * promises for values)
1502
+ * @returns a promise for an array of the corresponding values
1503
+ */
1504
+ // By Mark Miller
1505
+ // http://wiki.ecmascript.org/doku.php?id=strawman:concurrency&rev=1308776521#allfulfilled
1506
+ Q.all = all;
1507
+ function all(promises) {
1508
+ return when(promises, function (promises) {
1509
+ var countDown = 0;
1510
+ var deferred = defer();
1511
+ array_reduce(promises, function (undefined, promise, index) {
1512
+ var snapshot;
1513
+ if (
1514
+ isPromise(promise) &&
1515
+ (snapshot = promise.inspect()).state === "fulfilled"
1516
+ ) {
1517
+ promises[index] = snapshot.value;
1518
+ } else {
1519
+ ++countDown;
1520
+ when(
1521
+ promise,
1522
+ function (value) {
1523
+ promises[index] = value;
1524
+ if (--countDown === 0) {
1525
+ deferred.resolve(promises);
1526
+ }
1527
+ },
1528
+ deferred.reject,
1529
+ function (progress) {
1530
+ deferred.notify({ index: index, value: progress });
1531
+ }
1532
+ );
1533
+ }
1534
+ }, void 0);
1535
+ if (countDown === 0) {
1536
+ deferred.resolve(promises);
1537
+ }
1538
+ return deferred.promise;
1539
+ });
1540
+ }
1541
+
1542
+ Promise.prototype.all = function () {
1543
+ return all(this);
1544
+ };
1545
+
1546
+ /**
1547
+ * Waits for all promises to be settled, either fulfilled or
1548
+ * rejected. This is distinct from `all` since that would stop
1549
+ * waiting at the first rejection. The promise returned by
1550
+ * `allResolved` will never be rejected.
1551
+ * @param promises a promise for an array (or an array) of promises
1552
+ * (or values)
1553
+ * @return a promise for an array of promises
1554
+ */
1555
+ Q.allResolved = deprecate(allResolved, "allResolved", "allSettled");
1556
+ function allResolved(promises) {
1557
+ return when(promises, function (promises) {
1558
+ promises = array_map(promises, Q);
1559
+ return when(all(array_map(promises, function (promise) {
1560
+ return when(promise, noop, noop);
1561
+ })), function () {
1562
+ return promises;
1563
+ });
1564
+ });
1565
+ }
1566
+
1567
+ Promise.prototype.allResolved = function () {
1568
+ return allResolved(this);
1569
+ };
1570
+
1571
+ /**
1572
+ * @see Promise#allSettled
1573
+ */
1574
+ Q.allSettled = allSettled;
1575
+ function allSettled(promises) {
1576
+ return Q(promises).allSettled();
1577
+ }
1578
+
1579
+ /**
1580
+ * Turns an array of promises into a promise for an array of their states (as
1581
+ * returned by `inspect`) when they have all settled.
1582
+ * @param {Array[Any*]} values an array (or promise for an array) of values (or
1583
+ * promises for values)
1584
+ * @returns {Array[State]} an array of states for the respective values.
1585
+ */
1586
+ Promise.prototype.allSettled = function () {
1587
+ return this.then(function (promises) {
1588
+ return all(array_map(promises, function (promise) {
1589
+ promise = Q(promise);
1590
+ function regardless() {
1591
+ return promise.inspect();
1592
+ }
1593
+ return promise.then(regardless, regardless);
1594
+ }));
1595
+ });
1596
+ };
1597
+
1598
+ /**
1599
+ * Captures the failure of a promise, giving an oportunity to recover
1600
+ * with a callback. If the given promise is fulfilled, the returned
1601
+ * promise is fulfilled.
1602
+ * @param {Any*} promise for something
1603
+ * @param {Function} callback to fulfill the returned promise if the
1604
+ * given promise is rejected
1605
+ * @returns a promise for the return value of the callback
1606
+ */
1607
+ Q.fail = // XXX legacy
1608
+ Q["catch"] = function (object, rejected) {
1609
+ return Q(object).then(void 0, rejected);
1610
+ };
1611
+
1612
+ Promise.prototype.fail = // XXX legacy
1613
+ Promise.prototype["catch"] = function (rejected) {
1614
+ return this.then(void 0, rejected);
1615
+ };
1616
+
1617
+ /**
1618
+ * Attaches a listener that can respond to progress notifications from a
1619
+ * promise's originating deferred. This listener receives the exact arguments
1620
+ * passed to ``deferred.notify``.
1621
+ * @param {Any*} promise for something
1622
+ * @param {Function} callback to receive any progress notifications
1623
+ * @returns the given promise, unchanged
1624
+ */
1625
+ Q.progress = progress;
1626
+ function progress(object, progressed) {
1627
+ return Q(object).then(void 0, void 0, progressed);
1628
+ }
1629
+
1630
+ Promise.prototype.progress = function (progressed) {
1631
+ return this.then(void 0, void 0, progressed);
1632
+ };
1633
+
1634
+ /**
1635
+ * Provides an opportunity to observe the settling of a promise,
1636
+ * regardless of whether the promise is fulfilled or rejected. Forwards
1637
+ * the resolution to the returned promise when the callback is done.
1638
+ * The callback can return a promise to defer completion.
1639
+ * @param {Any*} promise
1640
+ * @param {Function} callback to observe the resolution of the given
1641
+ * promise, takes no arguments.
1642
+ * @returns a promise for the resolution of the given promise when
1643
+ * ``fin`` is done.
1644
+ */
1645
+ Q.fin = // XXX legacy
1646
+ Q["finally"] = function (object, callback) {
1647
+ return Q(object)["finally"](callback);
1648
+ };
1649
+
1650
+ Promise.prototype.fin = // XXX legacy
1651
+ Promise.prototype["finally"] = function (callback) {
1652
+ callback = Q(callback);
1653
+ return this.then(function (value) {
1654
+ return callback.fcall().then(function () {
1655
+ return value;
1656
+ });
1657
+ }, function (reason) {
1658
+ // TODO attempt to recycle the rejection with "this".
1659
+ return callback.fcall().then(function () {
1660
+ throw reason;
1661
+ });
1662
+ });
1663
+ };
1664
+
1665
+ /**
1666
+ * Terminates a chain of promises, forcing rejections to be
1667
+ * thrown as exceptions.
1668
+ * @param {Any*} promise at the end of a chain of promises
1669
+ * @returns nothing
1670
+ */
1671
+ Q.done = function (object, fulfilled, rejected, progress) {
1672
+ return Q(object).done(fulfilled, rejected, progress);
1673
+ };
1674
+
1675
+ Promise.prototype.done = function (fulfilled, rejected, progress) {
1676
+ var onUnhandledError = function (error) {
1677
+ // forward to a future turn so that ``when``
1678
+ // does not catch it and turn it into a rejection.
1679
+ nextTick(function () {
1680
+ makeStackTraceLong(error, promise);
1681
+ if (Q.onerror) {
1682
+ Q.onerror(error);
1683
+ } else {
1684
+ throw error;
1685
+ }
1686
+ });
1687
+ };
1688
+
1689
+ // Avoid unnecessary `nextTick`ing via an unnecessary `when`.
1690
+ var promise = fulfilled || rejected || progress ?
1691
+ this.then(fulfilled, rejected, progress) :
1692
+ this;
1693
+
1694
+ if (typeof process === "object" && process && process.domain) {
1695
+ onUnhandledError = process.domain.bind(onUnhandledError);
1696
+ }
1697
+
1698
+ promise.then(void 0, onUnhandledError);
1699
+ };
1700
+
1701
+ /**
1702
+ * Causes a promise to be rejected if it does not get fulfilled before
1703
+ * some milliseconds time out.
1704
+ * @param {Any*} promise
1705
+ * @param {Number} milliseconds timeout
1706
+ * @param {String} custom error message (optional)
1707
+ * @returns a promise for the resolution of the given promise if it is
1708
+ * fulfilled before the timeout, otherwise rejected.
1709
+ */
1710
+ Q.timeout = function (object, ms, message) {
1711
+ return Q(object).timeout(ms, message);
1712
+ };
1713
+
1714
+ Promise.prototype.timeout = function (ms, message) {
1715
+ var deferred = defer();
1716
+ var timeoutId = setTimeout(function () {
1717
+ deferred.reject(new Error(message || "Timed out after " + ms + " ms"));
1718
+ }, ms);
1719
+
1720
+ this.then(function (value) {
1721
+ clearTimeout(timeoutId);
1722
+ deferred.resolve(value);
1723
+ }, function (exception) {
1724
+ clearTimeout(timeoutId);
1725
+ deferred.reject(exception);
1726
+ }, deferred.notify);
1727
+
1728
+ return deferred.promise;
1729
+ };
1730
+
1731
+ /**
1732
+ * Returns a promise for the given value (or promised value), some
1733
+ * milliseconds after it resolved. Passes rejections immediately.
1734
+ * @param {Any*} promise
1735
+ * @param {Number} milliseconds
1736
+ * @returns a promise for the resolution of the given promise after milliseconds
1737
+ * time has elapsed since the resolution of the given promise.
1738
+ * If the given promise rejects, that is passed immediately.
1739
+ */
1740
+ Q.delay = function (object, timeout) {
1741
+ if (timeout === void 0) {
1742
+ timeout = object;
1743
+ object = void 0;
1744
+ }
1745
+ return Q(object).delay(timeout);
1746
+ };
1747
+
1748
+ Promise.prototype.delay = function (timeout) {
1749
+ return this.then(function (value) {
1750
+ var deferred = defer();
1751
+ setTimeout(function () {
1752
+ deferred.resolve(value);
1753
+ }, timeout);
1754
+ return deferred.promise;
1755
+ });
1756
+ };
1757
+
1758
+ /**
1759
+ * Passes a continuation to a Node function, which is called with the given
1760
+ * arguments provided as an array, and returns a promise.
1761
+ *
1762
+ * Q.nfapply(FS.readFile, [__filename])
1763
+ * .then(function (content) {
1764
+ * })
1765
+ *
1766
+ */
1767
+ Q.nfapply = function (callback, args) {
1768
+ return Q(callback).nfapply(args);
1769
+ };
1770
+
1771
+ Promise.prototype.nfapply = function (args) {
1772
+ var deferred = defer();
1773
+ var nodeArgs = array_slice(args);
1774
+ nodeArgs.push(deferred.makeNodeResolver());
1775
+ this.fapply(nodeArgs).fail(deferred.reject);
1776
+ return deferred.promise;
1777
+ };
1778
+
1779
+ /**
1780
+ * Passes a continuation to a Node function, which is called with the given
1781
+ * arguments provided individually, and returns a promise.
1782
+ * @example
1783
+ * Q.nfcall(FS.readFile, __filename)
1784
+ * .then(function (content) {
1785
+ * })
1786
+ *
1787
+ */
1788
+ Q.nfcall = function (callback /*...args*/) {
1789
+ var args = array_slice(arguments, 1);
1790
+ return Q(callback).nfapply(args);
1791
+ };
1792
+
1793
+ Promise.prototype.nfcall = function (/*...args*/) {
1794
+ var nodeArgs = array_slice(arguments);
1795
+ var deferred = defer();
1796
+ nodeArgs.push(deferred.makeNodeResolver());
1797
+ this.fapply(nodeArgs).fail(deferred.reject);
1798
+ return deferred.promise;
1799
+ };
1800
+
1801
+ /**
1802
+ * Wraps a NodeJS continuation passing function and returns an equivalent
1803
+ * version that returns a promise.
1804
+ * @example
1805
+ * Q.nfbind(FS.readFile, __filename)("utf-8")
1806
+ * .then(console.log)
1807
+ * .done()
1808
+ */
1809
+ Q.nfbind =
1810
+ Q.denodeify = function (callback /*...args*/) {
1811
+ var baseArgs = array_slice(arguments, 1);
1812
+ return function () {
1813
+ var nodeArgs = baseArgs.concat(array_slice(arguments));
1814
+ var deferred = defer();
1815
+ nodeArgs.push(deferred.makeNodeResolver());
1816
+ Q(callback).fapply(nodeArgs).fail(deferred.reject);
1817
+ return deferred.promise;
1818
+ };
1819
+ };
1820
+
1821
+ Promise.prototype.nfbind =
1822
+ Promise.prototype.denodeify = function (/*...args*/) {
1823
+ var args = array_slice(arguments);
1824
+ args.unshift(this);
1825
+ return Q.denodeify.apply(void 0, args);
1826
+ };
1827
+
1828
+ Q.nbind = function (callback, thisp /*...args*/) {
1829
+ var baseArgs = array_slice(arguments, 2);
1830
+ return function () {
1831
+ var nodeArgs = baseArgs.concat(array_slice(arguments));
1832
+ var deferred = defer();
1833
+ nodeArgs.push(deferred.makeNodeResolver());
1834
+ function bound() {
1835
+ return callback.apply(thisp, arguments);
1836
+ }
1837
+ Q(bound).fapply(nodeArgs).fail(deferred.reject);
1838
+ return deferred.promise;
1839
+ };
1840
+ };
1841
+
1842
+ Promise.prototype.nbind = function (/*thisp, ...args*/) {
1843
+ var args = array_slice(arguments, 0);
1844
+ args.unshift(this);
1845
+ return Q.nbind.apply(void 0, args);
1846
+ };
1847
+
1848
+ /**
1849
+ * Calls a method of a Node-style object that accepts a Node-style
1850
+ * callback with a given array of arguments, plus a provided callback.
1851
+ * @param object an object that has the named method
1852
+ * @param {String} name name of the method of object
1853
+ * @param {Array} args arguments to pass to the method; the callback
1854
+ * will be provided by Q and appended to these arguments.
1855
+ * @returns a promise for the value or error
1856
+ */
1857
+ Q.nmapply = // XXX As proposed by "Redsandro"
1858
+ Q.npost = function (object, name, args) {
1859
+ return Q(object).npost(name, args);
1860
+ };
1861
+
1862
+ Promise.prototype.nmapply = // XXX As proposed by "Redsandro"
1863
+ Promise.prototype.npost = function (name, args) {
1864
+ var nodeArgs = array_slice(args || []);
1865
+ var deferred = defer();
1866
+ nodeArgs.push(deferred.makeNodeResolver());
1867
+ this.dispatch("post", [name, nodeArgs]).fail(deferred.reject);
1868
+ return deferred.promise;
1869
+ };
1870
+
1871
+ /**
1872
+ * Calls a method of a Node-style object that accepts a Node-style
1873
+ * callback, forwarding the given variadic arguments, plus a provided
1874
+ * callback argument.
1875
+ * @param object an object that has the named method
1876
+ * @param {String} name name of the method of object
1877
+ * @param ...args arguments to pass to the method; the callback will
1878
+ * be provided by Q and appended to these arguments.
1879
+ * @returns a promise for the value or error
1880
+ */
1881
+ Q.nsend = // XXX Based on Mark Miller's proposed "send"
1882
+ Q.nmcall = // XXX Based on "Redsandro's" proposal
1883
+ Q.ninvoke = function (object, name /*...args*/) {
1884
+ var nodeArgs = array_slice(arguments, 2);
1885
+ var deferred = defer();
1886
+ nodeArgs.push(deferred.makeNodeResolver());
1887
+ Q(object).dispatch("post", [name, nodeArgs]).fail(deferred.reject);
1888
+ return deferred.promise;
1889
+ };
1890
+
1891
+ Promise.prototype.nsend = // XXX Based on Mark Miller's proposed "send"
1892
+ Promise.prototype.nmcall = // XXX Based on "Redsandro's" proposal
1893
+ Promise.prototype.ninvoke = function (name /*...args*/) {
1894
+ var nodeArgs = array_slice(arguments, 1);
1895
+ var deferred = defer();
1896
+ nodeArgs.push(deferred.makeNodeResolver());
1897
+ this.dispatch("post", [name, nodeArgs]).fail(deferred.reject);
1898
+ return deferred.promise;
1899
+ };
1900
+
1901
+ /**
1902
+ * If a function would like to support both Node continuation-passing-style and
1903
+ * promise-returning-style, it can end its internal promise chain with
1904
+ * `nodeify(nodeback)`, forwarding the optional nodeback argument. If the user
1905
+ * elects to use a nodeback, the result will be sent there. If they do not
1906
+ * pass a nodeback, they will receive the result promise.
1907
+ * @param object a result (or a promise for a result)
1908
+ * @param {Function} nodeback a Node.js-style callback
1909
+ * @returns either the promise or nothing
1910
+ */
1911
+ Q.nodeify = nodeify;
1912
+ function nodeify(object, nodeback) {
1913
+ return Q(object).nodeify(nodeback);
1914
+ }
1915
+
1916
+ Promise.prototype.nodeify = function (nodeback) {
1917
+ if (nodeback) {
1918
+ this.then(function (value) {
1919
+ nextTick(function () {
1920
+ nodeback(null, value);
1921
+ });
1922
+ }, function (error) {
1923
+ nextTick(function () {
1924
+ nodeback(error);
1925
+ });
1926
+ });
1927
+ } else {
1928
+ return this;
1929
+ }
1930
+ };
1931
+
1932
+ // All code before this point will be filtered from stack traces.
1933
+ var qEndingLine = captureLine();
1934
+
1935
+ return Q;
1936
+
1937
+ });