brwy_rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3467) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +8 -0
  4. data/lib/brwy_rails/middleware.rb +54 -0
  5. data/lib/brwy_rails/railtie.rb +21 -0
  6. data/lib/brwy_rails/runner.rb +75 -0
  7. data/lib/brwy_rails/version.rb +3 -0
  8. data/lib/brwy_rails.rb +5 -0
  9. data/lib/tasks/bywy_rails_tasks.rake +17 -0
  10. data/test/brwy_rails_test.rb +7 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +1 -0
  14. data/test/dummy/app/assets/javascripts/sub.js +1 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  16. data/test/dummy/app/controllers/application_controller.rb +5 -0
  17. data/test/dummy/app/controllers/home_controller.rb +4 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/views/home/index.html +1 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/test/dummy/bin/bundle +3 -0
  22. data/test/dummy/bin/rails +4 -0
  23. data/test/dummy/bin/rake +4 -0
  24. data/test/dummy/bin/setup +29 -0
  25. data/test/dummy/config/application.rb +22 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/database.yml +25 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +42 -0
  30. data/test/dummy/config/environments/production.rb +79 -0
  31. data/test/dummy/config/environments/test.rb +42 -0
  32. data/test/dummy/config/initializers/assets.rb +11 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/test/dummy/config/initializers/inflections.rb +16 -0
  37. data/test/dummy/config/initializers/mime_types.rb +4 -0
  38. data/test/dummy/config/initializers/session_store.rb +3 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +23 -0
  41. data/test/dummy/config/routes.rb +56 -0
  42. data/test/dummy/config/secrets.yml +22 -0
  43. data/test/dummy/config.ru +4 -0
  44. data/test/dummy/db/development.sqlite3 +0 -0
  45. data/test/dummy/log/development.log +1367 -0
  46. data/test/dummy/log/production.log +0 -0
  47. data/test/dummy/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
  48. data/test/dummy/node_modules/JSONStream/LICENSE.MIT +24 -0
  49. data/test/dummy/node_modules/JSONStream/examples/all_docs.js +13 -0
  50. data/test/dummy/node_modules/JSONStream/index.js +209 -0
  51. data/test/dummy/node_modules/JSONStream/package.json +104 -0
  52. data/test/dummy/node_modules/JSONStream/readme.markdown +188 -0
  53. data/test/dummy/node_modules/JSONStream/test/bool.js +41 -0
  54. data/test/dummy/node_modules/JSONStream/test/browser.js +18 -0
  55. data/test/dummy/node_modules/JSONStream/test/destroy_missing.js +27 -0
  56. data/test/dummy/node_modules/JSONStream/test/disabled/doubledot1.js +29 -0
  57. data/test/dummy/node_modules/JSONStream/test/disabled/doubledot2.js +29 -0
  58. data/test/dummy/node_modules/JSONStream/test/empty.js +44 -0
  59. data/test/dummy/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
  60. data/test/dummy/node_modules/JSONStream/test/fixtures/couch_sample.json +18 -0
  61. data/test/dummy/node_modules/JSONStream/test/fixtures/depth.json +15 -0
  62. data/test/dummy/node_modules/JSONStream/test/fn.js +39 -0
  63. data/test/dummy/node_modules/JSONStream/test/gen.js +135 -0
  64. data/test/dummy/node_modules/JSONStream/test/issues.js +20 -0
  65. data/test/dummy/node_modules/JSONStream/test/keys.js +85 -0
  66. data/test/dummy/node_modules/JSONStream/test/map.js +40 -0
  67. data/test/dummy/node_modules/JSONStream/test/multiple_objects.js +36 -0
  68. data/test/dummy/node_modules/JSONStream/test/multiple_objects_error.js +29 -0
  69. data/test/dummy/node_modules/JSONStream/test/null.js +28 -0
  70. data/test/dummy/node_modules/JSONStream/test/parsejson.js +28 -0
  71. data/test/dummy/node_modules/JSONStream/test/stringify.js +41 -0
  72. data/test/dummy/node_modules/JSONStream/test/stringify_object.js +47 -0
  73. data/test/dummy/node_modules/JSONStream/test/test.js +35 -0
  74. data/test/dummy/node_modules/JSONStream/test/test2.js +29 -0
  75. data/test/dummy/node_modules/JSONStream/test/two-ways.js +41 -0
  76. data/test/dummy/node_modules/acorn/AUTHORS +38 -0
  77. data/test/dummy/node_modules/acorn/LICENSE +19 -0
  78. data/test/dummy/node_modules/acorn/README.md +377 -0
  79. data/test/dummy/node_modules/acorn/bin/acorn +54 -0
  80. data/test/dummy/node_modules/acorn/bin/build-acorn.js +51 -0
  81. data/test/dummy/node_modules/acorn/bin/generate-identifier-regex.js +47 -0
  82. data/test/dummy/node_modules/acorn/bin/prepublish.sh +2 -0
  83. data/test/dummy/node_modules/acorn/bin/update_authors.sh +6 -0
  84. data/test/dummy/node_modules/acorn/bin/without_eval +48 -0
  85. data/test/dummy/node_modules/acorn/dist/acorn.js +4014 -0
  86. data/test/dummy/node_modules/acorn/dist/acorn_csp.js +3985 -0
  87. data/test/dummy/node_modules/acorn/dist/acorn_loose.js +1298 -0
  88. data/test/dummy/node_modules/acorn/dist/walk.js +342 -0
  89. data/test/dummy/node_modules/acorn/package.json +194 -0
  90. data/test/dummy/node_modules/acorn/src/expression.js +697 -0
  91. data/test/dummy/node_modules/acorn/src/identifier.js +129 -0
  92. data/test/dummy/node_modules/acorn/src/index.js +75 -0
  93. data/test/dummy/node_modules/acorn/src/location.js +68 -0
  94. data/test/dummy/node_modules/acorn/src/loose/acorn_loose.js +0 -0
  95. data/test/dummy/node_modules/acorn/src/loose/expression.js +511 -0
  96. data/test/dummy/node_modules/acorn/src/loose/index.js +50 -0
  97. data/test/dummy/node_modules/acorn/src/loose/parseutil.js +126 -0
  98. data/test/dummy/node_modules/acorn/src/loose/state.js +17 -0
  99. data/test/dummy/node_modules/acorn/src/loose/statement.js +419 -0
  100. data/test/dummy/node_modules/acorn/src/loose/tokenize.js +108 -0
  101. data/test/dummy/node_modules/acorn/src/lval.js +213 -0
  102. data/test/dummy/node_modules/acorn/src/node.js +70 -0
  103. data/test/dummy/node_modules/acorn/src/options.js +119 -0
  104. data/test/dummy/node_modules/acorn/src/parseutil.js +89 -0
  105. data/test/dummy/node_modules/acorn/src/state.js +78 -0
  106. data/test/dummy/node_modules/acorn/src/statement.js +594 -0
  107. data/test/dummy/node_modules/acorn/src/tokencontext.js +107 -0
  108. data/test/dummy/node_modules/acorn/src/tokenize.js +672 -0
  109. data/test/dummy/node_modules/acorn/src/tokentype.js +142 -0
  110. data/test/dummy/node_modules/acorn/src/util.js +9 -0
  111. data/test/dummy/node_modules/acorn/src/walk/index.js +291 -0
  112. data/test/dummy/node_modules/acorn/src/whitespace.js +12 -0
  113. data/test/dummy/node_modules/anymatch/LICENSE +15 -0
  114. data/test/dummy/node_modules/anymatch/README.md +91 -0
  115. data/test/dummy/node_modules/anymatch/index.js +64 -0
  116. data/test/dummy/node_modules/anymatch/package.json +96 -0
  117. data/test/dummy/node_modules/arr-diff/LICENSE +21 -0
  118. data/test/dummy/node_modules/arr-diff/README.md +74 -0
  119. data/test/dummy/node_modules/arr-diff/index.js +58 -0
  120. data/test/dummy/node_modules/arr-diff/package.json +111 -0
  121. data/test/dummy/node_modules/arr-flatten/LICENSE +21 -0
  122. data/test/dummy/node_modules/arr-flatten/README.md +73 -0
  123. data/test/dummy/node_modules/arr-flatten/index.js +27 -0
  124. data/test/dummy/node_modules/arr-flatten/package.json +100 -0
  125. data/test/dummy/node_modules/array-filter/README.md +54 -0
  126. data/test/dummy/node_modules/array-filter/index.js +19 -0
  127. data/test/dummy/node_modules/array-filter/package.json +96 -0
  128. data/test/dummy/node_modules/array-filter/test/filter.js +12 -0
  129. data/test/dummy/node_modules/array-filter/test/holes.js +12 -0
  130. data/test/dummy/node_modules/array-map/LICENSE +18 -0
  131. data/test/dummy/node_modules/array-map/example/map.js +5 -0
  132. data/test/dummy/node_modules/array-map/index.js +11 -0
  133. data/test/dummy/node_modules/array-map/package.json +100 -0
  134. data/test/dummy/node_modules/array-map/readme.markdown +46 -0
  135. data/test/dummy/node_modules/array-map/test/map.js +77 -0
  136. data/test/dummy/node_modules/array-reduce/LICENSE +18 -0
  137. data/test/dummy/node_modules/array-reduce/example/sum.js +4 -0
  138. data/test/dummy/node_modules/array-reduce/index.js +18 -0
  139. data/test/dummy/node_modules/array-reduce/package.json +99 -0
  140. data/test/dummy/node_modules/array-reduce/readme.markdown +46 -0
  141. data/test/dummy/node_modules/array-reduce/test/reduce.js +85 -0
  142. data/test/dummy/node_modules/array-unique/LICENSE +21 -0
  143. data/test/dummy/node_modules/array-unique/README.md +51 -0
  144. data/test/dummy/node_modules/array-unique/index.js +28 -0
  145. data/test/dummy/node_modules/array-unique/package.json +86 -0
  146. data/test/dummy/node_modules/arrify/index.js +8 -0
  147. data/test/dummy/node_modules/arrify/license +21 -0
  148. data/test/dummy/node_modules/arrify/package.json +89 -0
  149. data/test/dummy/node_modules/arrify/readme.md +36 -0
  150. data/test/dummy/node_modules/asn1.js/README.md +100 -0
  151. data/test/dummy/node_modules/asn1.js/lib/asn1/api.js +59 -0
  152. data/test/dummy/node_modules/asn1.js/lib/asn1/base/buffer.js +116 -0
  153. data/test/dummy/node_modules/asn1.js/lib/asn1/base/index.js +6 -0
  154. data/test/dummy/node_modules/asn1.js/lib/asn1/base/node.js +621 -0
  155. data/test/dummy/node_modules/asn1.js/lib/asn1/base/reporter.js +102 -0
  156. data/test/dummy/node_modules/asn1.js/lib/asn1/constants/der.js +42 -0
  157. data/test/dummy/node_modules/asn1.js/lib/asn1/constants/index.js +19 -0
  158. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/der.js +321 -0
  159. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/index.js +4 -0
  160. data/test/dummy/node_modules/asn1.js/lib/asn1/decoders/pem.js +50 -0
  161. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/der.js +294 -0
  162. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/index.js +4 -0
  163. data/test/dummy/node_modules/asn1.js/lib/asn1/encoders/pem.js +23 -0
  164. data/test/dummy/node_modules/asn1.js/lib/asn1.js +9 -0
  165. data/test/dummy/node_modules/asn1.js/package.json +89 -0
  166. data/test/dummy/node_modules/asn1.js/rfc/2560/index.js +149 -0
  167. data/test/dummy/node_modules/asn1.js/rfc/2560/package.json +27 -0
  168. data/test/dummy/node_modules/asn1.js/rfc/2560/test/basic-test.js +50 -0
  169. data/test/dummy/node_modules/asn1.js/rfc/5280/index.js +878 -0
  170. data/test/dummy/node_modules/asn1.js/rfc/5280/package.json +24 -0
  171. data/test/dummy/node_modules/asn1.js/rfc/5280/test/basic-test.js +105 -0
  172. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert1.crt +0 -0
  173. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert2.crt +0 -0
  174. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert3.crt +0 -0
  175. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert4.crt +0 -0
  176. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert5.crt +0 -0
  177. data/test/dummy/node_modules/asn1.js/rfc/5280/test/fixtures/cert6.crt +0 -0
  178. data/test/dummy/node_modules/asn1.js/test/der-decode-test.js +149 -0
  179. data/test/dummy/node_modules/asn1.js/test/der-encode-test.js +133 -0
  180. data/test/dummy/node_modules/asn1.js/test/error-test.js +222 -0
  181. data/test/dummy/node_modules/asn1.js/test/fixtures.js +7 -0
  182. data/test/dummy/node_modules/asn1.js/test/pem-test.js +54 -0
  183. data/test/dummy/node_modules/asn1.js/test/ping-pong-test.js +170 -0
  184. data/test/dummy/node_modules/asn1.js/test/use-test.js +128 -0
  185. data/test/dummy/node_modules/assert/LICENSE +18 -0
  186. data/test/dummy/node_modules/assert/README.md +64 -0
  187. data/test/dummy/node_modules/assert/assert.js +359 -0
  188. data/test/dummy/node_modules/assert/package.json +80 -0
  189. data/test/dummy/node_modules/assert/test.js +343 -0
  190. data/test/dummy/node_modules/ast-types/LICENSE +20 -0
  191. data/test/dummy/node_modules/ast-types/README.md +489 -0
  192. data/test/dummy/node_modules/ast-types/def/babel.js +105 -0
  193. data/test/dummy/node_modules/ast-types/def/core.js +367 -0
  194. data/test/dummy/node_modules/ast-types/def/e4x.js +84 -0
  195. data/test/dummy/node_modules/ast-types/def/es6.js +217 -0
  196. data/test/dummy/node_modules/ast-types/def/es7.js +36 -0
  197. data/test/dummy/node_modules/ast-types/def/esprima.js +96 -0
  198. data/test/dummy/node_modules/ast-types/def/flow.js +269 -0
  199. data/test/dummy/node_modules/ast-types/def/jsx.js +100 -0
  200. data/test/dummy/node_modules/ast-types/def/mozilla.js +49 -0
  201. data/test/dummy/node_modules/ast-types/lib/equiv.js +184 -0
  202. data/test/dummy/node_modules/ast-types/lib/node-path.js +474 -0
  203. data/test/dummy/node_modules/ast-types/lib/path-visitor.js +419 -0
  204. data/test/dummy/node_modules/ast-types/lib/path.js +366 -0
  205. data/test/dummy/node_modules/ast-types/lib/scope.js +330 -0
  206. data/test/dummy/node_modules/ast-types/lib/shared.js +41 -0
  207. data/test/dummy/node_modules/ast-types/lib/types.js +828 -0
  208. data/test/dummy/node_modules/ast-types/main.js +34 -0
  209. data/test/dummy/node_modules/ast-types/package.json +100 -0
  210. data/test/dummy/node_modules/astw/LICENSE +18 -0
  211. data/test/dummy/node_modules/astw/example/types.js +8 -0
  212. data/test/dummy/node_modules/astw/index.js +51 -0
  213. data/test/dummy/node_modules/astw/package.json +96 -0
  214. data/test/dummy/node_modules/astw/readme.markdown +52 -0
  215. data/test/dummy/node_modules/astw/test/json.js +13 -0
  216. data/test/dummy/node_modules/astw/test/parent.js +25 -0
  217. data/test/dummy/node_modules/async-each/CHANGELOG.md +23 -0
  218. data/test/dummy/node_modules/async-each/README.md +64 -0
  219. data/test/dummy/node_modules/async-each/bower.json +22 -0
  220. data/test/dummy/node_modules/async-each/component.json +18 -0
  221. data/test/dummy/node_modules/async-each/index.js +38 -0
  222. data/test/dummy/node_modules/async-each/package.json +89 -0
  223. data/test/dummy/node_modules/async-each/test.js +13 -0
  224. data/test/dummy/node_modules/balanced-match/LICENSE.md +21 -0
  225. data/test/dummy/node_modules/balanced-match/Makefile +6 -0
  226. data/test/dummy/node_modules/balanced-match/README.md +89 -0
  227. data/test/dummy/node_modules/balanced-match/example.js +5 -0
  228. data/test/dummy/node_modules/balanced-match/index.js +50 -0
  229. data/test/dummy/node_modules/balanced-match/package.json +98 -0
  230. data/test/dummy/node_modules/balanced-match/test/balanced.js +84 -0
  231. data/test/dummy/node_modules/base64-js/LICENSE.MIT +21 -0
  232. data/test/dummy/node_modules/base64-js/README.md +31 -0
  233. data/test/dummy/node_modules/base64-js/base64js.min.js +1 -0
  234. data/test/dummy/node_modules/base64-js/bower.json +33 -0
  235. data/test/dummy/node_modules/base64-js/lib/b64.js +109 -0
  236. data/test/dummy/node_modules/base64-js/package.json +87 -0
  237. data/test/dummy/node_modules/base64-js/test/big-data.js +24 -0
  238. data/test/dummy/node_modules/base64-js/test/convert.js +47 -0
  239. data/test/dummy/node_modules/base64-js/test/url-safe.js +18 -0
  240. data/test/dummy/node_modules/binary-extensions/binary-extensions.json +188 -0
  241. data/test/dummy/node_modules/binary-extensions/license +21 -0
  242. data/test/dummy/node_modules/binary-extensions/package.json +104 -0
  243. data/test/dummy/node_modules/binary-extensions/readme.md +33 -0
  244. data/test/dummy/node_modules/bn.js/README.md +219 -0
  245. data/test/dummy/node_modules/bn.js/lib/bn.js +3419 -0
  246. data/test/dummy/node_modules/bn.js/package.json +104 -0
  247. data/test/dummy/node_modules/bn.js/test/arithmetic-test.js +635 -0
  248. data/test/dummy/node_modules/bn.js/test/binary-test.js +228 -0
  249. data/test/dummy/node_modules/bn.js/test/constructor-test.js +149 -0
  250. data/test/dummy/node_modules/bn.js/test/fixtures.js +264 -0
  251. data/test/dummy/node_modules/bn.js/test/pummel/dh-group-test.js +23 -0
  252. data/test/dummy/node_modules/bn.js/test/red-test.js +263 -0
  253. data/test/dummy/node_modules/bn.js/test/utils-test.js +345 -0
  254. data/test/dummy/node_modules/bn.js/util/genCombMulTo.js +65 -0
  255. data/test/dummy/node_modules/bn.js/util/genCombMulTo10.js +64 -0
  256. data/test/dummy/node_modules/brace-expansion/README.md +122 -0
  257. data/test/dummy/node_modules/brace-expansion/example.js +8 -0
  258. data/test/dummy/node_modules/brace-expansion/index.js +191 -0
  259. data/test/dummy/node_modules/brace-expansion/package.json +105 -0
  260. data/test/dummy/node_modules/braces/LICENSE +21 -0
  261. data/test/dummy/node_modules/braces/README.md +248 -0
  262. data/test/dummy/node_modules/braces/index.js +399 -0
  263. data/test/dummy/node_modules/braces/package.json +149 -0
  264. data/test/dummy/node_modules/brorand/README.md +26 -0
  265. data/test/dummy/node_modules/brorand/index.js +57 -0
  266. data/test/dummy/node_modules/brorand/package.json +81 -0
  267. data/test/dummy/node_modules/brorand/test/api-test.js +8 -0
  268. data/test/dummy/node_modules/browser-pack/LICENSE +18 -0
  269. data/test/dummy/node_modules/browser-pack/_prelude.js +1 -0
  270. data/test/dummy/node_modules/browser-pack/bin/cmd.js +4 -0
  271. data/test/dummy/node_modules/browser-pack/bin/prepublish.js +8 -0
  272. data/test/dummy/node_modules/browser-pack/example/input.json +13 -0
  273. data/test/dummy/node_modules/browser-pack/example/output.js +1 -0
  274. data/test/dummy/node_modules/browser-pack/example/sourcemap/input.json +15 -0
  275. data/test/dummy/node_modules/browser-pack/example/sourcemap/output.js +6 -0
  276. data/test/dummy/node_modules/browser-pack/index.js +121 -0
  277. data/test/dummy/node_modules/browser-pack/package.json +120 -0
  278. data/test/dummy/node_modules/browser-pack/prelude.js +44 -0
  279. data/test/dummy/node_modules/browser-pack/readme.markdown +96 -0
  280. data/test/dummy/node_modules/browser-pack/test/comment.js +33 -0
  281. data/test/dummy/node_modules/browser-pack/test/empty.js +33 -0
  282. data/test/dummy/node_modules/browser-pack/test/not_found.js +34 -0
  283. data/test/dummy/node_modules/browser-pack/test/only_execute_entries.js +26 -0
  284. data/test/dummy/node_modules/browser-pack/test/order.js +38 -0
  285. data/test/dummy/node_modules/browser-pack/test/pack.js +28 -0
  286. data/test/dummy/node_modules/browser-pack/test/raw.js +32 -0
  287. data/test/dummy/node_modules/browser-pack/test/source-maps-existing.js +59 -0
  288. data/test/dummy/node_modules/browser-pack/test/source-maps.js +195 -0
  289. data/test/dummy/node_modules/browser-pack/test/this.js +24 -0
  290. data/test/dummy/node_modules/browser-pack/test/unicode.js +32 -0
  291. data/test/dummy/node_modules/browser-resolve/LICENSE +21 -0
  292. data/test/dummy/node_modules/browser-resolve/README.md +141 -0
  293. data/test/dummy/node_modules/browser-resolve/empty.js +0 -0
  294. data/test/dummy/node_modules/browser-resolve/index.js +340 -0
  295. data/test/dummy/node_modules/browser-resolve/package.json +89 -0
  296. data/test/dummy/node_modules/browserify/LICENSE +63 -0
  297. data/test/dummy/node_modules/browserify/bin/advanced.txt +100 -0
  298. data/test/dummy/node_modules/browserify/bin/args.js +266 -0
  299. data/test/dummy/node_modules/browserify/bin/cmd.js +74 -0
  300. data/test/dummy/node_modules/browserify/bin/usage.txt +34 -0
  301. data/test/dummy/node_modules/browserify/changelog.markdown +1161 -0
  302. data/test/dummy/node_modules/browserify/example/api/browser/bar.js +1 -0
  303. data/test/dummy/node_modules/browserify/example/api/browser/foo.js +5 -0
  304. data/test/dummy/node_modules/browserify/example/api/browser/main.js +2 -0
  305. data/test/dummy/node_modules/browserify/example/api/build.js +4 -0
  306. data/test/dummy/node_modules/browserify/example/multiple_bundles/beep.js +2 -0
  307. data/test/dummy/node_modules/browserify/example/multiple_bundles/boop.js +2 -0
  308. data/test/dummy/node_modules/browserify/example/multiple_bundles/build.sh +4 -0
  309. data/test/dummy/node_modules/browserify/example/multiple_bundles/robot.js +1 -0
  310. data/test/dummy/node_modules/browserify/example/multiple_bundles/static/beep.html +2 -0
  311. data/test/dummy/node_modules/browserify/example/multiple_bundles/static/boop.html +2 -0
  312. data/test/dummy/node_modules/browserify/example/source_maps/build.js +13 -0
  313. data/test/dummy/node_modules/browserify/example/source_maps/build.sh +4 -0
  314. data/test/dummy/node_modules/browserify/example/source_maps/index.html +11 -0
  315. data/test/dummy/node_modules/browserify/example/source_maps/js/build/bundle.js +28 -0
  316. data/test/dummy/node_modules/browserify/example/source_maps/js/foo.js +7 -0
  317. data/test/dummy/node_modules/browserify/example/source_maps/js/main.js +4 -0
  318. data/test/dummy/node_modules/browserify/example/source_maps/js/wunder/bar.js +8 -0
  319. data/test/dummy/node_modules/browserify/index.js +804 -0
  320. data/test/dummy/node_modules/browserify/lib/_empty.js +0 -0
  321. data/test/dummy/node_modules/browserify/lib/builtins.js +38 -0
  322. data/test/dummy/node_modules/browserify/package.json +185 -0
  323. data/test/dummy/node_modules/browserify/readme.markdown +786 -0
  324. data/test/dummy/node_modules/browserify/test/args.js +72 -0
  325. data/test/dummy/node_modules/browserify/test/array/one.js +1 -0
  326. data/test/dummy/node_modules/browserify/test/array/three.js +1 -0
  327. data/test/dummy/node_modules/browserify/test/array/two.js +1 -0
  328. data/test/dummy/node_modules/browserify/test/array.js +74 -0
  329. data/test/dummy/node_modules/browserify/test/backbone.js +23 -0
  330. data/test/dummy/node_modules/browserify/test/bare/main.js +7 -0
  331. data/test/dummy/node_modules/browserify/test/bare.js +70 -0
  332. data/test/dummy/node_modules/browserify/test/bare_shebang.js +37 -0
  333. data/test/dummy/node_modules/browserify/test/bin.js +31 -0
  334. data/test/dummy/node_modules/browserify/test/bin_entry.js +31 -0
  335. data/test/dummy/node_modules/browserify/test/bin_tr_error/main.js +1 -0
  336. data/test/dummy/node_modules/browserify/test/bin_tr_error/tr.js +12 -0
  337. data/test/dummy/node_modules/browserify/test/bin_tr_error.js +23 -0
  338. data/test/dummy/node_modules/browserify/test/bom/hello.js +1 -0
  339. data/test/dummy/node_modules/browserify/test/bom.js +19 -0
  340. data/test/dummy/node_modules/browserify/test/browser_field_file/package.json +5 -0
  341. data/test/dummy/node_modules/browserify/test/browser_field_file/wow.js +1 -0
  342. data/test/dummy/node_modules/browserify/test/browser_field_file.js +13 -0
  343. data/test/dummy/node_modules/browserify/test/browser_field_resolve/a/main.js +1 -0
  344. data/test/dummy/node_modules/browserify/test/browser_field_resolve/a/package.json +5 -0
  345. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/main.js +1 -0
  346. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/package.json +5 -0
  347. data/test/dummy/node_modules/browserify/test/browser_field_resolve/b/x.js +1 -0
  348. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/main.js +1 -0
  349. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/package.json +5 -0
  350. data/test/dummy/node_modules/browserify/test/browser_field_resolve/c/x.js +1 -0
  351. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/main.js +1 -0
  352. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/package.json +5 -0
  353. data/test/dummy/node_modules/browserify/test/browser_field_resolve/d/x.js +1 -0
  354. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/main.js +1 -0
  355. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/package.json +5 -0
  356. data/test/dummy/node_modules/browserify/test/browser_field_resolve/e/x.js +1 -0
  357. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/main.js +1 -0
  358. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/package.json +5 -0
  359. data/test/dummy/node_modules/browserify/test/browser_field_resolve/f/x.js +1 -0
  360. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/main.js +2 -0
  361. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/package.json +5 -0
  362. data/test/dummy/node_modules/browserify/test/browser_field_resolve/g/x.js +1 -0
  363. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/main.js +2 -0
  364. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/package.json +5 -0
  365. data/test/dummy/node_modules/browserify/test/browser_field_resolve/h/x.js +1 -0
  366. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/browser.js +1 -0
  367. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/main.js +2 -0
  368. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/package.json +5 -0
  369. data/test/dummy/node_modules/browserify/test/browser_field_resolve/i/x.js +1 -0
  370. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/browser.js +1 -0
  371. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/main.js +2 -0
  372. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/package.json +5 -0
  373. data/test/dummy/node_modules/browserify/test/browser_field_resolve/j/x.js +1 -0
  374. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/main.js +2 -0
  375. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/node_modules/x/hey.js +1 -0
  376. data/test/dummy/node_modules/browserify/test/browser_field_resolve/k/node_modules/x/package.json +5 -0
  377. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/main.js +2 -0
  378. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/node_modules/x/hey.js +1 -0
  379. data/test/dummy/node_modules/browserify/test/browser_field_resolve/l/node_modules/x/package.json +5 -0
  380. data/test/dummy/node_modules/browserify/test/browser_field_resolve.js +124 -0
  381. data/test/dummy/node_modules/browserify/test/buffer.js +142 -0
  382. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/bar.js +2 -0
  383. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/baz.js +3 -0
  384. data/test/dummy/node_modules/browserify/test/bundle-bundle-external/foo.js +5 -0
  385. data/test/dummy/node_modules/browserify/test/bundle-bundle-external.js +31 -0
  386. data/test/dummy/node_modules/browserify/test/bundle-stream.js +18 -0
  387. data/test/dummy/node_modules/browserify/test/bundle.js +33 -0
  388. data/test/dummy/node_modules/browserify/test/bundle_external/boop.js +4 -0
  389. data/test/dummy/node_modules/browserify/test/bundle_external/main.js +4 -0
  390. data/test/dummy/node_modules/browserify/test/bundle_external/robot.js +1 -0
  391. data/test/dummy/node_modules/browserify/test/bundle_external.js +26 -0
  392. data/test/dummy/node_modules/browserify/test/bundle_external_global.js +24 -0
  393. data/test/dummy/node_modules/browserify/test/bundle_sourcemap.js +32 -0
  394. data/test/dummy/node_modules/browserify/test/catch/main.js +1 -0
  395. data/test/dummy/node_modules/browserify/test/catch.js +22 -0
  396. data/test/dummy/node_modules/browserify/test/circular/a.js +3 -0
  397. data/test/dummy/node_modules/browserify/test/circular/b.js +1 -0
  398. data/test/dummy/node_modules/browserify/test/circular/main.js +1 -0
  399. data/test/dummy/node_modules/browserify/test/circular.js +34 -0
  400. data/test/dummy/node_modules/browserify/test/coffee_bin/main.coffee +2 -0
  401. data/test/dummy/node_modules/browserify/test/coffee_bin/x.coffee +1 -0
  402. data/test/dummy/node_modules/browserify/test/coffee_bin.js +36 -0
  403. data/test/dummy/node_modules/browserify/test/coffeeify/main.coffee +2 -0
  404. data/test/dummy/node_modules/browserify/test/coffeeify.js +19 -0
  405. data/test/dummy/node_modules/browserify/test/comment/main.js +2 -0
  406. data/test/dummy/node_modules/browserify/test/comment.js +16 -0
  407. data/test/dummy/node_modules/browserify/test/constants.js +18 -0
  408. data/test/dummy/node_modules/browserify/test/crypto.js +39 -0
  409. data/test/dummy/node_modules/browserify/test/crypto_ig.js +39 -0
  410. data/test/dummy/node_modules/browserify/test/cycle/README.md +16 -0
  411. data/test/dummy/node_modules/browserify/test/cycle/entry.js +15 -0
  412. data/test/dummy/node_modules/browserify/test/cycle/mod1/a.js +1 -0
  413. data/test/dummy/node_modules/browserify/test/cycle/mod1/b.js +1 -0
  414. data/test/dummy/node_modules/browserify/test/cycle/mod2/a.js +1 -0
  415. data/test/dummy/node_modules/browserify/test/cycle/mod2/b.js +1 -0
  416. data/test/dummy/node_modules/browserify/test/cycle.js +13 -0
  417. data/test/dummy/node_modules/browserify/test/debug_standalone/x.js +1 -0
  418. data/test/dummy/node_modules/browserify/test/debug_standalone.js +64 -0
  419. data/test/dummy/node_modules/browserify/test/dedupe-deps.js +43 -0
  420. data/test/dummy/node_modules/browserify/test/dedupe-nomap.js +64 -0
  421. data/test/dummy/node_modules/browserify/test/delay/diverted.js +1 -0
  422. data/test/dummy/node_modules/browserify/test/delay/main.js +1 -0
  423. data/test/dummy/node_modules/browserify/test/delay.js +24 -0
  424. data/test/dummy/node_modules/browserify/test/dep.js +25 -0
  425. data/test/dummy/node_modules/browserify/test/dollar/dollar/index.js +7 -0
  426. data/test/dummy/node_modules/browserify/test/dollar.js +17 -0
  427. data/test/dummy/node_modules/browserify/test/double_buffer/explicit.js +1 -0
  428. data/test/dummy/node_modules/browserify/test/double_buffer/implicit.js +1 -0
  429. data/test/dummy/node_modules/browserify/test/double_buffer/main.js +4 -0
  430. data/test/dummy/node_modules/browserify/test/double_buffer.js +14 -0
  431. data/test/dummy/node_modules/browserify/test/double_bundle.js +24 -0
  432. data/test/dummy/node_modules/browserify/test/double_bundle_error/main.js +1 -0
  433. data/test/dummy/node_modules/browserify/test/double_bundle_error/needs_three.js +1 -0
  434. data/test/dummy/node_modules/browserify/test/double_bundle_error/one.js +1 -0
  435. data/test/dummy/node_modules/browserify/test/double_bundle_error/package.json +5 -0
  436. data/test/dummy/node_modules/browserify/test/double_bundle_error/three.js +3 -0
  437. data/test/dummy/node_modules/browserify/test/double_bundle_error/two.js +1 -0
  438. data/test/dummy/node_modules/browserify/test/double_bundle_error.js +17 -0
  439. data/test/dummy/node_modules/browserify/test/double_bundle_json/a.json +1 -0
  440. data/test/dummy/node_modules/browserify/test/double_bundle_json/b.json +1 -0
  441. data/test/dummy/node_modules/browserify/test/double_bundle_json/index.js +5 -0
  442. data/test/dummy/node_modules/browserify/test/double_bundle_json.js +37 -0
  443. data/test/dummy/node_modules/browserify/test/double_bundle_parallel.js +33 -0
  444. data/test/dummy/node_modules/browserify/test/double_bundle_parallel_cache.js +35 -0
  445. data/test/dummy/node_modules/browserify/test/dup/foo-dup.js +4 -0
  446. data/test/dummy/node_modules/browserify/test/dup/foo.js +4 -0
  447. data/test/dummy/node_modules/browserify/test/dup/index.js +5 -0
  448. data/test/dummy/node_modules/browserify/test/entry/main.js +1 -0
  449. data/test/dummy/node_modules/browserify/test/entry/needs_three.js +1 -0
  450. data/test/dummy/node_modules/browserify/test/entry/one.js +1 -0
  451. data/test/dummy/node_modules/browserify/test/entry/package.json +5 -0
  452. data/test/dummy/node_modules/browserify/test/entry/three.js +1 -0
  453. data/test/dummy/node_modules/browserify/test/entry/two.js +1 -0
  454. data/test/dummy/node_modules/browserify/test/entry.js +42 -0
  455. data/test/dummy/node_modules/browserify/test/entry_exec/fail.js +1 -0
  456. data/test/dummy/node_modules/browserify/test/entry_exec/main.js +1 -0
  457. data/test/dummy/node_modules/browserify/test/entry_exec.js +15 -0
  458. data/test/dummy/node_modules/browserify/test/entry_expose/main.js +2 -0
  459. data/test/dummy/node_modules/browserify/test/entry_expose.js +19 -0
  460. data/test/dummy/node_modules/browserify/test/entry_relative.js +44 -0
  461. data/test/dummy/node_modules/browserify/test/error_code/src.js +2 -0
  462. data/test/dummy/node_modules/browserify/test/error_code.js +24 -0
  463. data/test/dummy/node_modules/browserify/test/export/entry.js +1 -0
  464. data/test/dummy/node_modules/browserify/test/export.js +35 -0
  465. data/test/dummy/node_modules/browserify/test/external/main.js +2 -0
  466. data/test/dummy/node_modules/browserify/test/external/x.js +3 -0
  467. data/test/dummy/node_modules/browserify/test/external.js +20 -0
  468. data/test/dummy/node_modules/browserify/test/external_args/main.js +10 -0
  469. data/test/dummy/node_modules/browserify/test/external_shim/bundle1.js +1 -0
  470. data/test/dummy/node_modules/browserify/test/external_shim/bundle2.js +1 -0
  471. data/test/dummy/node_modules/browserify/test/external_shim/package.json +5 -0
  472. data/test/dummy/node_modules/browserify/test/external_shim/shim.js +0 -0
  473. data/test/dummy/node_modules/browserify/test/external_shim.js +27 -0
  474. data/test/dummy/node_modules/browserify/test/externalize/beep.js +2 -0
  475. data/test/dummy/node_modules/browserify/test/externalize/boop.js +2 -0
  476. data/test/dummy/node_modules/browserify/test/externalize/robot.js +1 -0
  477. data/test/dummy/node_modules/browserify/test/externalize.js +59 -0
  478. data/test/dummy/node_modules/browserify/test/fake/fake_fs.js +1 -0
  479. data/test/dummy/node_modules/browserify/test/fake/main.js +2 -0
  480. data/test/dummy/node_modules/browserify/test/fake.js +15 -0
  481. data/test/dummy/node_modules/browserify/test/field/miss.js +1 -0
  482. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/browser.js +1 -0
  483. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/main.js +1 -0
  484. data/test/dummy/node_modules/browserify/test/field/node_modules/z-miss/package.json +4 -0
  485. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/browser.js +1 -0
  486. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/main.js +1 -0
  487. data/test/dummy/node_modules/browserify/test/field/node_modules/z-object/package.json +4 -0
  488. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/browser.js +1 -0
  489. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/main.js +1 -0
  490. data/test/dummy/node_modules/browserify/test/field/node_modules/z-string/package.json +4 -0
  491. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/browser/a.js +1 -0
  492. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/browser/b.js +1 -0
  493. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/main.js +1 -0
  494. data/test/dummy/node_modules/browserify/test/field/node_modules/z-sub/package.json +4 -0
  495. data/test/dummy/node_modules/browserify/test/field/object.js +1 -0
  496. data/test/dummy/node_modules/browserify/test/field/string.js +1 -0
  497. data/test/dummy/node_modules/browserify/test/field/sub.js +1 -0
  498. data/test/dummy/node_modules/browserify/test/field.js +72 -0
  499. data/test/dummy/node_modules/browserify/test/file_event.js +33 -0
  500. data/test/dummy/node_modules/browserify/test/five_bundle.js +30 -0
  501. data/test/dummy/node_modules/browserify/test/full_paths.js +58 -0
  502. data/test/dummy/node_modules/browserify/test/glob/a.js +6 -0
  503. data/test/dummy/node_modules/browserify/test/glob/b.js +5 -0
  504. data/test/dummy/node_modules/browserify/test/glob/lib/z.js +1 -0
  505. data/test/dummy/node_modules/browserify/test/glob/vendor/x.js +1 -0
  506. data/test/dummy/node_modules/browserify/test/glob/vendor/y.js +1 -0
  507. data/test/dummy/node_modules/browserify/test/glob.js +29 -0
  508. data/test/dummy/node_modules/browserify/test/global/buffer.js +2 -0
  509. data/test/dummy/node_modules/browserify/test/global/filename.js +2 -0
  510. data/test/dummy/node_modules/browserify/test/global/main.js +2 -0
  511. data/test/dummy/node_modules/browserify/test/global/node_modules/aaa/index.js +2 -0
  512. data/test/dummy/node_modules/browserify/test/global/node_modules/robot/index.js +1 -0
  513. data/test/dummy/node_modules/browserify/test/global/node_modules/robot/lib/beep.js +2 -0
  514. data/test/dummy/node_modules/browserify/test/global/tick.js +3 -0
  515. data/test/dummy/node_modules/browserify/test/global.js +90 -0
  516. data/test/dummy/node_modules/browserify/test/global_coffeeify.js +19 -0
  517. data/test/dummy/node_modules/browserify/test/global_noparse.js +101 -0
  518. data/test/dummy/node_modules/browserify/test/global_recorder/main.js +1 -0
  519. data/test/dummy/node_modules/browserify/test/global_recorder.js +22 -0
  520. data/test/dummy/node_modules/browserify/test/hash/foo/other.js +1 -0
  521. data/test/dummy/node_modules/browserify/test/hash/foo/two.js +2 -0
  522. data/test/dummy/node_modules/browserify/test/hash/main.js +2 -0
  523. data/test/dummy/node_modules/browserify/test/hash/one.js +2 -0
  524. data/test/dummy/node_modules/browserify/test/hash/other.js +1 -0
  525. data/test/dummy/node_modules/browserify/test/hash.js +15 -0
  526. data/test/dummy/node_modules/browserify/test/hash_instance_context/main.js +17 -0
  527. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/dir/f.js +3 -0
  528. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/dir/g.js +2 -0
  529. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/f.js +3 -0
  530. data/test/dummy/node_modules/browserify/test/hash_instance_context/one/g.js +2 -0
  531. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/f.js +3 -0
  532. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/g.js +2 -0
  533. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/dir/h.js +2 -0
  534. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/f.js +3 -0
  535. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/g.js +2 -0
  536. data/test/dummy/node_modules/browserify/test/hash_instance_context/three/h.js +2 -0
  537. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/f.js +3 -0
  538. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/g.js +2 -0
  539. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/dir/h.js +2 -0
  540. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/f.js +3 -0
  541. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/g.js +2 -0
  542. data/test/dummy/node_modules/browserify/test/hash_instance_context/two/h.js +2 -0
  543. data/test/dummy/node_modules/browserify/test/hash_instance_context.js +25 -0
  544. data/test/dummy/node_modules/browserify/test/identical/main.js +6 -0
  545. data/test/dummy/node_modules/browserify/test/identical/x.js +2 -0
  546. data/test/dummy/node_modules/browserify/test/identical/y.js +2 -0
  547. data/test/dummy/node_modules/browserify/test/identical.js +19 -0
  548. data/test/dummy/node_modules/browserify/test/identical_different/main.js +6 -0
  549. data/test/dummy/node_modules/browserify/test/identical_different/node_modules/op/index.js +3 -0
  550. data/test/dummy/node_modules/browserify/test/identical_different/wow/node_modules/op/index.js +3 -0
  551. data/test/dummy/node_modules/browserify/test/identical_different/wow/y.js +3 -0
  552. data/test/dummy/node_modules/browserify/test/identical_different/x.js +3 -0
  553. data/test/dummy/node_modules/browserify/test/identical_different.js +19 -0
  554. data/test/dummy/node_modules/browserify/test/ignore/by-id.js +3 -0
  555. data/test/dummy/node_modules/browserify/test/ignore/by-relative.js +5 -0
  556. data/test/dummy/node_modules/browserify/test/ignore/double-skip/index.js +1 -0
  557. data/test/dummy/node_modules/browserify/test/ignore/double-skip/skip.js +5 -0
  558. data/test/dummy/node_modules/browserify/test/ignore/double-skip.js +2 -0
  559. data/test/dummy/node_modules/browserify/test/ignore/ignored/skip.js +1 -0
  560. data/test/dummy/node_modules/browserify/test/ignore/main.js +1 -0
  561. data/test/dummy/node_modules/browserify/test/ignore/relative/index.js +1 -0
  562. data/test/dummy/node_modules/browserify/test/ignore/skip.js +1 -0
  563. data/test/dummy/node_modules/browserify/test/ignore.js +72 -0
  564. data/test/dummy/node_modules/browserify/test/ignore_browser_field/main.js +2 -0
  565. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/browser.js +1 -0
  566. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/main.js +1 -0
  567. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/a/package.json +6 -0
  568. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/browser-x.js +1 -0
  569. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/main.js +1 -0
  570. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/package.json +8 -0
  571. data/test/dummy/node_modules/browserify/test/ignore_browser_field/node_modules/b/x.js +1 -0
  572. data/test/dummy/node_modules/browserify/test/ignore_browser_field.js +21 -0
  573. data/test/dummy/node_modules/browserify/test/ignore_missing/main.js +1 -0
  574. data/test/dummy/node_modules/browserify/test/ignore_missing.js +41 -0
  575. data/test/dummy/node_modules/browserify/test/json/beep.json +4 -0
  576. data/test/dummy/node_modules/browserify/test/json/evil-chars.json +3 -0
  577. data/test/dummy/node_modules/browserify/test/json/evil.js +2 -0
  578. data/test/dummy/node_modules/browserify/test/json/main.js +2 -0
  579. data/test/dummy/node_modules/browserify/test/json.js +44 -0
  580. data/test/dummy/node_modules/browserify/test/leak.js +57 -0
  581. data/test/dummy/node_modules/browserify/test/maxlisteners/main.js +3 -0
  582. data/test/dummy/node_modules/browserify/test/maxlisteners.js +13 -0
  583. data/test/dummy/node_modules/browserify/test/multi_bundle/_prelude.js +1 -0
  584. data/test/dummy/node_modules/browserify/test/multi_bundle/a.js +3 -0
  585. data/test/dummy/node_modules/browserify/test/multi_bundle/b.js +5 -0
  586. data/test/dummy/node_modules/browserify/test/multi_bundle/c.js +4 -0
  587. data/test/dummy/node_modules/browserify/test/multi_bundle.js +86 -0
  588. data/test/dummy/node_modules/browserify/test/multi_bundle_unique.js +56 -0
  589. data/test/dummy/node_modules/browserify/test/multi_entry/a.js +2 -0
  590. data/test/dummy/node_modules/browserify/test/multi_entry/b.js +2 -0
  591. data/test/dummy/node_modules/browserify/test/multi_entry/c.js +2 -0
  592. data/test/dummy/node_modules/browserify/test/multi_entry.js +121 -0
  593. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/a.js +8 -0
  594. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/c.js +7 -0
  595. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require/lib/b.js +5 -0
  596. data/test/dummy/node_modules/browserify/test/multi_entry_cross_require.js +92 -0
  597. data/test/dummy/node_modules/browserify/test/multi_require/a.js +3 -0
  598. data/test/dummy/node_modules/browserify/test/multi_require/main.js +4 -0
  599. data/test/dummy/node_modules/browserify/test/multi_require.js +18 -0
  600. data/test/dummy/node_modules/browserify/test/multi_symlink/main.js +2 -0
  601. data/test/dummy/node_modules/browserify/test/multi_symlink/x.js +1 -0
  602. data/test/dummy/node_modules/browserify/test/multi_symlink.js +13 -0
  603. data/test/dummy/node_modules/browserify/test/no_builtins/extra/fs.js +1 -0
  604. data/test/dummy/node_modules/browserify/test/no_builtins/extra/tls.js +1 -0
  605. data/test/dummy/node_modules/browserify/test/no_builtins/main.js +4 -0
  606. data/test/dummy/node_modules/browserify/test/no_builtins/x.txt +1 -0
  607. data/test/dummy/node_modules/browserify/test/no_builtins.js +63 -0
  608. data/test/dummy/node_modules/browserify/test/node_modules/beep/index.js +1 -0
  609. data/test/dummy/node_modules/browserify/test/node_modules/plugin-foo/index.js +9 -0
  610. data/test/dummy/node_modules/browserify/test/node_modules/tr/index.js +8 -0
  611. data/test/dummy/node_modules/browserify/test/noparse/a.js +4 -0
  612. data/test/dummy/node_modules/browserify/test/noparse/b.js +5 -0
  613. data/test/dummy/node_modules/browserify/test/noparse/dir1/1.js +4 -0
  614. data/test/dummy/node_modules/browserify/test/noparse/dir1/dir2/2.js +3 -0
  615. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/lib/beep.js +4 -0
  616. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/lib/boop.js +3 -0
  617. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/main.js +4 -0
  618. data/test/dummy/node_modules/browserify/test/noparse/node_modules/robot/package.json +3 -0
  619. data/test/dummy/node_modules/browserify/test/noparse.js +31 -0
  620. data/test/dummy/node_modules/browserify/test/pack.js +33 -0
  621. data/test/dummy/node_modules/browserify/test/paths/main.js +3 -0
  622. data/test/dummy/node_modules/browserify/test/paths/x/aaa/index.js +1 -0
  623. data/test/dummy/node_modules/browserify/test/paths/x/ccc/index.js +1 -0
  624. data/test/dummy/node_modules/browserify/test/paths/y/bbb/index.js +1 -0
  625. data/test/dummy/node_modules/browserify/test/paths/y/ccc/index.js +1 -0
  626. data/test/dummy/node_modules/browserify/test/paths.js +32 -0
  627. data/test/dummy/node_modules/browserify/test/paths_transform.js +76 -0
  628. data/test/dummy/node_modules/browserify/test/pipeline_deps/bar.js +3 -0
  629. data/test/dummy/node_modules/browserify/test/pipeline_deps/foo.js +5 -0
  630. data/test/dummy/node_modules/browserify/test/pipeline_deps/main.js +2 -0
  631. data/test/dummy/node_modules/browserify/test/pipeline_deps/xyz.js +2 -0
  632. data/test/dummy/node_modules/browserify/test/pipeline_deps.js +22 -0
  633. data/test/dummy/node_modules/browserify/test/pkg/main.js +1 -0
  634. data/test/dummy/node_modules/browserify/test/pkg/package.json +1 -0
  635. data/test/dummy/node_modules/browserify/test/pkg.js +20 -0
  636. data/test/dummy/node_modules/browserify/test/pkg_event/main.js +1 -0
  637. data/test/dummy/node_modules/browserify/test/pkg_event/package.json +3 -0
  638. data/test/dummy/node_modules/browserify/test/pkg_event.js +31 -0
  639. data/test/dummy/node_modules/browserify/test/plugin/main.js +1 -0
  640. data/test/dummy/node_modules/browserify/test/plugin.js +28 -0
  641. data/test/dummy/node_modules/browserify/test/process/main.js +3 -0
  642. data/test/dummy/node_modules/browserify/test/process/one.js +1 -0
  643. data/test/dummy/node_modules/browserify/test/process/two.js +1 -0
  644. data/test/dummy/node_modules/browserify/test/process.js +21 -0
  645. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/a.js +3 -0
  646. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/b.js +3 -0
  647. data/test/dummy/node_modules/browserify/test/relative_dedupe/a/index.js +4 -0
  648. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/a.js +3 -0
  649. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/b.js +3 -0
  650. data/test/dummy/node_modules/browserify/test/relative_dedupe/b/index.js +4 -0
  651. data/test/dummy/node_modules/browserify/test/relative_dedupe/index.js +4 -0
  652. data/test/dummy/node_modules/browserify/test/relative_dedupe/main.js +5 -0
  653. data/test/dummy/node_modules/browserify/test/relative_dedupe.js +17 -0
  654. data/test/dummy/node_modules/browserify/test/require_cache.js +19 -0
  655. data/test/dummy/node_modules/browserify/test/require_expose/main.js +1 -0
  656. data/test/dummy/node_modules/browserify/test/require_expose/some_dep.js +1 -0
  657. data/test/dummy/node_modules/browserify/test/require_expose.js +53 -0
  658. data/test/dummy/node_modules/browserify/test/reset.js +31 -0
  659. data/test/dummy/node_modules/browserify/test/resolve_exposed/main.js +2 -0
  660. data/test/dummy/node_modules/browserify/test/resolve_exposed/x.js +1 -0
  661. data/test/dummy/node_modules/browserify/test/resolve_exposed.js +20 -0
  662. data/test/dummy/node_modules/browserify/test/retarget.js +25 -0
  663. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/app.js +22 -0
  664. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/arbitrary.js +6 -0
  665. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/lazy.js +9 -0
  666. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle/shared.js +6 -0
  667. data/test/dummy/node_modules/browserify/test/reverse_multi_bundle.js +47 -0
  668. data/test/dummy/node_modules/browserify/test/shared_symlink/app/index.js +1 -0
  669. data/test/dummy/node_modules/browserify/test/shared_symlink/app/node_modules/foo/index.js +1 -0
  670. data/test/dummy/node_modules/browserify/test/shared_symlink/main.js +1 -0
  671. data/test/dummy/node_modules/browserify/test/shared_symlink/shared/index.js +1 -0
  672. data/test/dummy/node_modules/browserify/test/shared_symlink.js +16 -0
  673. data/test/dummy/node_modules/browserify/test/shebang/foo.js +2 -0
  674. data/test/dummy/node_modules/browserify/test/shebang/main.js +4 -0
  675. data/test/dummy/node_modules/browserify/test/shebang.js +11 -0
  676. data/test/dummy/node_modules/browserify/test/standalone/main.js +3 -0
  677. data/test/dummy/node_modules/browserify/test/standalone/one.js +1 -0
  678. data/test/dummy/node_modules/browserify/test/standalone/two.js +1 -0
  679. data/test/dummy/node_modules/browserify/test/standalone.js +85 -0
  680. data/test/dummy/node_modules/browserify/test/standalone_events.js +19 -0
  681. data/test/dummy/node_modules/browserify/test/standalone_sourcemap.js +55 -0
  682. data/test/dummy/node_modules/browserify/test/stdin.js +35 -0
  683. data/test/dummy/node_modules/browserify/test/stream/bar.js +1 -0
  684. data/test/dummy/node_modules/browserify/test/stream/foo.js +1 -0
  685. data/test/dummy/node_modules/browserify/test/stream/main.js +2 -0
  686. data/test/dummy/node_modules/browserify/test/stream.js +15 -0
  687. data/test/dummy/node_modules/browserify/test/stream_file.js +29 -0
  688. data/test/dummy/node_modules/browserify/test/subdep/index.js +1 -0
  689. data/test/dummy/node_modules/browserify/test/subdep/package.json +6 -0
  690. data/test/dummy/node_modules/browserify/test/subdep.js +16 -0
  691. data/test/dummy/node_modules/browserify/test/symlink_dedupe/main.js +6 -0
  692. data/test/dummy/node_modules/browserify/test/symlink_dedupe/one/f.js +3 -0
  693. data/test/dummy/node_modules/browserify/test/symlink_dedupe/one/g.js +2 -0
  694. data/test/dummy/node_modules/browserify/test/symlink_dedupe.js +16 -0
  695. data/test/dummy/node_modules/browserify/test/syntax_cache/invalid.js +2 -0
  696. data/test/dummy/node_modules/browserify/test/syntax_cache/valid.js +2 -0
  697. data/test/dummy/node_modules/browserify/test/syntax_cache.js +47 -0
  698. data/test/dummy/node_modules/browserify/test/tr/f.js +2 -0
  699. data/test/dummy/node_modules/browserify/test/tr/main.js +9 -0
  700. data/test/dummy/node_modules/browserify/test/tr/package.json +5 -0
  701. data/test/dummy/node_modules/browserify/test/tr/subdir/g.js +1 -0
  702. data/test/dummy/node_modules/browserify/test/tr.js +28 -0
  703. data/test/dummy/node_modules/browserify/test/tr_args/main.js +1 -0
  704. data/test/dummy/node_modules/browserify/test/tr_args/tr.js +12 -0
  705. data/test/dummy/node_modules/browserify/test/tr_args.js +24 -0
  706. data/test/dummy/node_modules/browserify/test/tr_error.js +33 -0
  707. data/test/dummy/node_modules/browserify/test/tr_flags.js +36 -0
  708. data/test/dummy/node_modules/browserify/test/tr_global/main.js +1 -0
  709. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/tr/index.js +8 -0
  710. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/x/index.js +1 -0
  711. data/test/dummy/node_modules/browserify/test/tr_global/node_modules/x/node_modules/tr/index.js +8 -0
  712. data/test/dummy/node_modules/browserify/test/tr_global.js +17 -0
  713. data/test/dummy/node_modules/browserify/test/tr_no_entry/main.js +1 -0
  714. data/test/dummy/node_modules/browserify/test/tr_no_entry.js +20 -0
  715. data/test/dummy/node_modules/browserify/test/tr_once/main.js +1 -0
  716. data/test/dummy/node_modules/browserify/test/tr_once.js +21 -0
  717. data/test/dummy/node_modules/browserify/test/tr_order/replace_aaa.js +10 -0
  718. data/test/dummy/node_modules/browserify/test/tr_order/replace_bbb.js +11 -0
  719. data/test/dummy/node_modules/browserify/test/tr_order.js +23 -0
  720. data/test/dummy/node_modules/browserify/test/tr_symlink/a-module/index.js +1 -0
  721. data/test/dummy/node_modules/browserify/test/tr_symlink/app/main.js +6 -0
  722. data/test/dummy/node_modules/browserify/test/tr_symlink/app/package.json +5 -0
  723. data/test/dummy/node_modules/browserify/test/tr_symlink/b-module/ext.js +1 -0
  724. data/test/dummy/node_modules/browserify/test/tr_symlink/b-module/index.js +2 -0
  725. data/test/dummy/node_modules/browserify/test/tr_symlink.js +27 -0
  726. data/test/dummy/node_modules/browserify/test/unicode/main.js +1 -0
  727. data/test/dummy/node_modules/browserify/test/unicode/one.js +1 -0
  728. data/test/dummy/node_modules/browserify/test/unicode/two.js +1 -0
  729. data/test/dummy/node_modules/browserify/test/unicode.js +19 -0
  730. data/test/dummy/node_modules/browserify/test/util.js +62 -0
  731. data/test/dummy/node_modules/browserify/test/yield/f.js +5 -0
  732. data/test/dummy/node_modules/browserify/test/yield/main.js +4 -0
  733. data/test/dummy/node_modules/browserify/test/yield.js +20 -0
  734. data/test/dummy/node_modules/browserify-aes/LICENSE +21 -0
  735. data/test/dummy/node_modules/browserify-aes/aes.js +177 -0
  736. data/test/dummy/node_modules/browserify-aes/authCipher.js +97 -0
  737. data/test/dummy/node_modules/browserify-aes/browser.js +11 -0
  738. data/test/dummy/node_modules/browserify-aes/decrypter.js +137 -0
  739. data/test/dummy/node_modules/browserify-aes/encrypter.js +122 -0
  740. data/test/dummy/node_modules/browserify-aes/ghash.js +98 -0
  741. data/test/dummy/node_modules/browserify-aes/index.js +7 -0
  742. data/test/dummy/node_modules/browserify-aes/modes/cbc.js +17 -0
  743. data/test/dummy/node_modules/browserify-aes/modes/cfb.js +31 -0
  744. data/test/dummy/node_modules/browserify-aes/modes/cfb1.js +34 -0
  745. data/test/dummy/node_modules/browserify-aes/modes/cfb8.js +15 -0
  746. data/test/dummy/node_modules/browserify-aes/modes/ctr.js +31 -0
  747. data/test/dummy/node_modules/browserify-aes/modes/ecb.js +6 -0
  748. data/test/dummy/node_modules/browserify-aes/modes/ofb.js +16 -0
  749. data/test/dummy/node_modules/browserify-aes/modes.js +171 -0
  750. data/test/dummy/node_modules/browserify-aes/package.json +104 -0
  751. data/test/dummy/node_modules/browserify-aes/populateFixtures.js +25 -0
  752. data/test/dummy/node_modules/browserify-aes/readme.md +18 -0
  753. data/test/dummy/node_modules/browserify-aes/streamCipher.js +25 -0
  754. data/test/dummy/node_modules/browserify-cipher/browser.js +73 -0
  755. data/test/dummy/node_modules/browserify-cipher/index.js +7 -0
  756. data/test/dummy/node_modules/browserify-cipher/package.json +81 -0
  757. data/test/dummy/node_modules/browserify-cipher/readme.md +7 -0
  758. data/test/dummy/node_modules/browserify-cipher/test.js +55 -0
  759. data/test/dummy/node_modules/browserify-des/index.js +43 -0
  760. data/test/dummy/node_modules/browserify-des/modes.js +24 -0
  761. data/test/dummy/node_modules/browserify-des/package.json +80 -0
  762. data/test/dummy/node_modules/browserify-des/readme.md +4 -0
  763. data/test/dummy/node_modules/browserify-des/test.js +48 -0
  764. data/test/dummy/node_modules/browserify-rsa/LICENSE +21 -0
  765. data/test/dummy/node_modules/browserify-rsa/index.js +40 -0
  766. data/test/dummy/node_modules/browserify-rsa/package.json +97 -0
  767. data/test/dummy/node_modules/browserify-rsa/readme.md +10 -0
  768. data/test/dummy/node_modules/browserify-rsa/test.js +53 -0
  769. data/test/dummy/node_modules/browserify-sign/LICENSE +13 -0
  770. data/test/dummy/node_modules/browserify-sign/README.md +4 -0
  771. data/test/dummy/node_modules/browserify-sign/algos.js +72 -0
  772. data/test/dummy/node_modules/browserify-sign/algos.json +15 -0
  773. data/test/dummy/node_modules/browserify-sign/browser.js +103 -0
  774. data/test/dummy/node_modules/browserify-sign/curves.js +12 -0
  775. data/test/dummy/node_modules/browserify-sign/ec.param +3 -0
  776. data/test/dummy/node_modules/browserify-sign/index.js +7 -0
  777. data/test/dummy/node_modules/browserify-sign/package.json +100 -0
  778. data/test/dummy/node_modules/browserify-sign/sign.js +185 -0
  779. data/test/dummy/node_modules/browserify-sign/verify.js +103 -0
  780. data/test/dummy/node_modules/browserify-zlib/README.md +22 -0
  781. data/test/dummy/node_modules/browserify-zlib/package.json +94 -0
  782. data/test/dummy/node_modules/browserify-zlib/src/binding.js +236 -0
  783. data/test/dummy/node_modules/browserify-zlib/src/index.js +610 -0
  784. data/test/dummy/node_modules/browserify-zlib/test/fixtures/elipses.txt +1 -0
  785. data/test/dummy/node_modules/browserify-zlib/test/fixtures/empty.txt +1 -0
  786. data/test/dummy/node_modules/browserify-zlib/test/fixtures/person.jpg +0 -0
  787. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary-fail.js +48 -0
  788. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-dictionary.js +95 -0
  789. data/test/dummy/node_modules/browserify-zlib/test/ignored/test-zlib-params.js +33 -0
  790. data/test/dummy/node_modules/browserify-zlib/test/package.json +7 -0
  791. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-close-after-write.js +35 -0
  792. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-convenience-methods.js +70 -0
  793. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-from-string.js +89 -0
  794. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-invalid-input.js +62 -0
  795. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-random-byte-pipes.js +176 -0
  796. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-write-after-flush.js +55 -0
  797. data/test/dummy/node_modules/browserify-zlib/test/test-zlib-zero-byte.js +41 -0
  798. data/test/dummy/node_modules/browserify-zlib/test/test-zlib.js +206 -0
  799. data/test/dummy/node_modules/buffer/LICENSE +21 -0
  800. data/test/dummy/node_modules/buffer/README.md +379 -0
  801. data/test/dummy/node_modules/buffer/bin/download-node-tests.js +107 -0
  802. data/test/dummy/node_modules/buffer/bin/test.js +41 -0
  803. data/test/dummy/node_modules/buffer/bin/zuul-es5.yml +12 -0
  804. data/test/dummy/node_modules/buffer/bin/zuul-es6.yml +10 -0
  805. data/test/dummy/node_modules/buffer/index.js +1711 -0
  806. data/test/dummy/node_modules/buffer/node_modules/isarray/Makefile +6 -0
  807. data/test/dummy/node_modules/buffer/node_modules/isarray/README.md +60 -0
  808. data/test/dummy/node_modules/buffer/node_modules/isarray/component.json +19 -0
  809. data/test/dummy/node_modules/buffer/node_modules/isarray/index.js +5 -0
  810. data/test/dummy/node_modules/buffer/node_modules/isarray/package.json +96 -0
  811. data/test/dummy/node_modules/buffer/node_modules/isarray/test.js +20 -0
  812. data/test/dummy/node_modules/buffer/package.json +134 -0
  813. data/test/dummy/node_modules/buffer/test/_polyfill.js +150 -0
  814. data/test/dummy/node_modules/buffer/test/base64.js +47 -0
  815. data/test/dummy/node_modules/buffer/test/basic.js +85 -0
  816. data/test/dummy/node_modules/buffer/test/compare.js +59 -0
  817. data/test/dummy/node_modules/buffer/test/constructor.js +193 -0
  818. data/test/dummy/node_modules/buffer/test/from-string.js +132 -0
  819. data/test/dummy/node_modules/buffer/test/is-buffer.js +22 -0
  820. data/test/dummy/node_modules/buffer/test/methods.js +127 -0
  821. data/test/dummy/node_modules/buffer/test/node/test-buffer-alloc.js +1449 -0
  822. data/test/dummy/node_modules/buffer/test/node/test-buffer-arraybuffer.js +112 -0
  823. data/test/dummy/node_modules/buffer/test/node/test-buffer-ascii.js +28 -0
  824. data/test/dummy/node_modules/buffer/test/node/test-buffer-bad-overload.js +18 -0
  825. data/test/dummy/node_modules/buffer/test/node/test-buffer-bytelength.js +89 -0
  826. data/test/dummy/node_modules/buffer/test/node/test-buffer-compare-offset.js +66 -0
  827. data/test/dummy/node_modules/buffer/test/node/test-buffer-concat.js +40 -0
  828. data/test/dummy/node_modules/buffer/test/node/test-buffer-fill.js +244 -0
  829. data/test/dummy/node_modules/buffer/test/node/test-buffer-includes.js +261 -0
  830. data/test/dummy/node_modules/buffer/test/node/test-buffer-indexof.js +287 -0
  831. data/test/dummy/node_modules/buffer/test/node/test-buffer-inheritance.js +42 -0
  832. data/test/dummy/node_modules/buffer/test/node/test-buffer-inspect.js +41 -0
  833. data/test/dummy/node_modules/buffer/test/node/test-buffer-iterator.js +65 -0
  834. data/test/dummy/node_modules/buffer/test/node/test-buffer-safe-unsafe.js +27 -0
  835. data/test/dummy/node_modules/buffer/test/node/test-buffer-slow.js +59 -0
  836. data/test/dummy/node_modules/buffer/test/node/test-buffer-swap.js +63 -0
  837. data/test/dummy/node_modules/buffer/test/node/test-buffer-zero-fill-cli.js +35 -0
  838. data/test/dummy/node_modules/buffer/test/node/test-buffer-zero-fill-reset.js +22 -0
  839. data/test/dummy/node_modules/buffer/test/node/test-buffer.js +1446 -0
  840. data/test/dummy/node_modules/buffer/test/slice.js +37 -0
  841. data/test/dummy/node_modules/buffer/test/static.js +17 -0
  842. data/test/dummy/node_modules/buffer/test/to-string.js +233 -0
  843. data/test/dummy/node_modules/buffer/test/write.js +131 -0
  844. data/test/dummy/node_modules/buffer/test/write_infinity.js +45 -0
  845. data/test/dummy/node_modules/buffer-xor/LICENSE +21 -0
  846. data/test/dummy/node_modules/buffer-xor/README.md +41 -0
  847. data/test/dummy/node_modules/buffer-xor/index.js +10 -0
  848. data/test/dummy/node_modules/buffer-xor/inline.js +1 -0
  849. data/test/dummy/node_modules/buffer-xor/inplace.js +9 -0
  850. data/test/dummy/node_modules/buffer-xor/package.json +88 -0
  851. data/test/dummy/node_modules/buffer-xor/test/fixtures.json +23 -0
  852. data/test/dummy/node_modules/buffer-xor/test/index.js +38 -0
  853. data/test/dummy/node_modules/builtin-status-codes/browser.js +63 -0
  854. data/test/dummy/node_modules/builtin-status-codes/build.js +8 -0
  855. data/test/dummy/node_modules/builtin-status-codes/index.js +3 -0
  856. data/test/dummy/node_modules/builtin-status-codes/license +21 -0
  857. data/test/dummy/node_modules/builtin-status-codes/package.json +95 -0
  858. data/test/dummy/node_modules/builtin-status-codes/readme.md +31 -0
  859. data/test/dummy/node_modules/chokidar/CHANGELOG.md +240 -0
  860. data/test/dummy/node_modules/chokidar/README.md +285 -0
  861. data/test/dummy/node_modules/chokidar/index.js +686 -0
  862. data/test/dummy/node_modules/chokidar/lib/fsevents-handler.js +361 -0
  863. data/test/dummy/node_modules/chokidar/lib/nodefs-handler.js +481 -0
  864. data/test/dummy/node_modules/chokidar/package.json +113 -0
  865. data/test/dummy/node_modules/cipher-base/index.js +90 -0
  866. data/test/dummy/node_modules/cipher-base/package.json +83 -0
  867. data/test/dummy/node_modules/cipher-base/readme.md +17 -0
  868. data/test/dummy/node_modules/cipher-base/test.js +108 -0
  869. data/test/dummy/node_modules/combine-source-map/LICENSE +23 -0
  870. data/test/dummy/node_modules/combine-source-map/README.md +111 -0
  871. data/test/dummy/node_modules/combine-source-map/example/two-files-short.js +26 -0
  872. data/test/dummy/node_modules/combine-source-map/example/two-files.js +46 -0
  873. data/test/dummy/node_modules/combine-source-map/index.js +153 -0
  874. data/test/dummy/node_modules/combine-source-map/lib/mappings-from-map.js +30 -0
  875. data/test/dummy/node_modules/combine-source-map/lib/path-is-absolute.js +20 -0
  876. data/test/dummy/node_modules/combine-source-map/lib/path-is-absolute.license +21 -0
  877. data/test/dummy/node_modules/combine-source-map/package.json +102 -0
  878. data/test/dummy/node_modules/combine-source-map/test/combine-source-map.js +347 -0
  879. data/test/dummy/node_modules/concat-map/LICENSE +18 -0
  880. data/test/dummy/node_modules/concat-map/README.markdown +62 -0
  881. data/test/dummy/node_modules/concat-map/example/map.js +6 -0
  882. data/test/dummy/node_modules/concat-map/index.js +13 -0
  883. data/test/dummy/node_modules/concat-map/package.json +109 -0
  884. data/test/dummy/node_modules/concat-map/test/map.js +39 -0
  885. data/test/dummy/node_modules/concat-stream/LICENSE +24 -0
  886. data/test/dummy/node_modules/concat-stream/index.js +136 -0
  887. data/test/dummy/node_modules/concat-stream/node_modules/isarray/Makefile +6 -0
  888. data/test/dummy/node_modules/concat-stream/node_modules/isarray/README.md +60 -0
  889. data/test/dummy/node_modules/concat-stream/node_modules/isarray/component.json +19 -0
  890. data/test/dummy/node_modules/concat-stream/node_modules/isarray/index.js +5 -0
  891. data/test/dummy/node_modules/concat-stream/node_modules/isarray/package.json +96 -0
  892. data/test/dummy/node_modules/concat-stream/node_modules/isarray/test.js +20 -0
  893. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/LICENSE +18 -0
  894. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/README.md +36 -0
  895. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/doc/stream.markdown +1760 -0
  896. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  897. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/duplex.js +1 -0
  898. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  899. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  900. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  901. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  902. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  903. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/package.json +105 -0
  904. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/passthrough.js +1 -0
  905. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/readable.js +12 -0
  906. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/transform.js +1 -0
  907. data/test/dummy/node_modules/concat-stream/node_modules/readable-stream/writable.js +1 -0
  908. data/test/dummy/node_modules/concat-stream/package.json +114 -0
  909. data/test/dummy/node_modules/concat-stream/readme.md +100 -0
  910. data/test/dummy/node_modules/console-browserify/LICENCE +19 -0
  911. data/test/dummy/node_modules/console-browserify/README.md +33 -0
  912. data/test/dummy/node_modules/console-browserify/index.js +86 -0
  913. data/test/dummy/node_modules/console-browserify/package.json +114 -0
  914. data/test/dummy/node_modules/console-browserify/test/index.js +67 -0
  915. data/test/dummy/node_modules/console-browserify/test/static/index.html +12 -0
  916. data/test/dummy/node_modules/console-browserify/test/static/test-adapter.js +53 -0
  917. data/test/dummy/node_modules/constants-browserify/README.md +54 -0
  918. data/test/dummy/node_modules/constants-browserify/build.sh +1 -0
  919. data/test/dummy/node_modules/constants-browserify/constants.json +209 -0
  920. data/test/dummy/node_modules/constants-browserify/package.json +86 -0
  921. data/test/dummy/node_modules/constants-browserify/test.js +18 -0
  922. data/test/dummy/node_modules/convert-source-map/LICENSE +23 -0
  923. data/test/dummy/node_modules/convert-source-map/README.md +121 -0
  924. data/test/dummy/node_modules/convert-source-map/example/comment-to-json.js +15 -0
  925. data/test/dummy/node_modules/convert-source-map/index.js +156 -0
  926. data/test/dummy/node_modules/convert-source-map/package.json +87 -0
  927. data/test/dummy/node_modules/convert-source-map/test/comment-regex.js +138 -0
  928. data/test/dummy/node_modules/convert-source-map/test/convert-source-map.js +207 -0
  929. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment-double-slash.css +14 -0
  930. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment-inline.css +14 -0
  931. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment.css +14 -0
  932. data/test/dummy/node_modules/convert-source-map/test/fixtures/map-file-comment.css.map +6 -0
  933. data/test/dummy/node_modules/convert-source-map/test/map-file-comment.js +70 -0
  934. data/test/dummy/node_modules/core-util-is/LICENSE +19 -0
  935. data/test/dummy/node_modules/core-util-is/README.md +3 -0
  936. data/test/dummy/node_modules/core-util-is/float.patch +604 -0
  937. data/test/dummy/node_modules/core-util-is/lib/util.js +107 -0
  938. data/test/dummy/node_modules/core-util-is/package.json +89 -0
  939. data/test/dummy/node_modules/core-util-is/test.js +68 -0
  940. data/test/dummy/node_modules/create-ecdh/browser.js +122 -0
  941. data/test/dummy/node_modules/create-ecdh/index.js +3 -0
  942. data/test/dummy/node_modules/create-ecdh/package.json +100 -0
  943. data/test/dummy/node_modules/create-ecdh/readme.md +4 -0
  944. data/test/dummy/node_modules/create-hash/browser.js +52 -0
  945. data/test/dummy/node_modules/create-hash/helpers.js +34 -0
  946. data/test/dummy/node_modules/create-hash/index.js +1 -0
  947. data/test/dummy/node_modules/create-hash/md5.js +156 -0
  948. data/test/dummy/node_modules/create-hash/package.json +104 -0
  949. data/test/dummy/node_modules/create-hash/readme.md +19 -0
  950. data/test/dummy/node_modules/create-hash/test.js +39 -0
  951. data/test/dummy/node_modules/create-hmac/browser.js +68 -0
  952. data/test/dummy/node_modules/create-hmac/index.js +1 -0
  953. data/test/dummy/node_modules/create-hmac/package.json +99 -0
  954. data/test/dummy/node_modules/create-hmac/readme.md +19 -0
  955. data/test/dummy/node_modules/create-hmac/test.js +41 -0
  956. data/test/dummy/node_modules/crypto-browserify/LICENSE +24 -0
  957. data/test/dummy/node_modules/crypto-browserify/README.md +49 -0
  958. data/test/dummy/node_modules/crypto-browserify/example/bundle.js +637 -0
  959. data/test/dummy/node_modules/crypto-browserify/example/index.html +12 -0
  960. data/test/dummy/node_modules/crypto-browserify/example/test.js +4 -0
  961. data/test/dummy/node_modules/crypto-browserify/index.js +77 -0
  962. data/test/dummy/node_modules/crypto-browserify/package.json +114 -0
  963. data/test/dummy/node_modules/crypto-browserify/test/aes.js +49 -0
  964. data/test/dummy/node_modules/crypto-browserify/test/create-hash.js +50 -0
  965. data/test/dummy/node_modules/crypto-browserify/test/create-hmac.js +50 -0
  966. data/test/dummy/node_modules/crypto-browserify/test/dh.js +49 -0
  967. data/test/dummy/node_modules/crypto-browserify/test/ecdh.js +61 -0
  968. data/test/dummy/node_modules/crypto-browserify/test/index.js +18 -0
  969. data/test/dummy/node_modules/crypto-browserify/test/node/dh.js +51 -0
  970. data/test/dummy/node_modules/crypto-browserify/test/pbkdf2.js +21 -0
  971. data/test/dummy/node_modules/crypto-browserify/test/public-encrypt.js +36 -0
  972. data/test/dummy/node_modules/crypto-browserify/test/random-bytes.js +60 -0
  973. data/test/dummy/node_modules/crypto-browserify/test/sign.js +59 -0
  974. data/test/dummy/node_modules/date-now/LICENCE +19 -0
  975. data/test/dummy/node_modules/date-now/README.md +45 -0
  976. data/test/dummy/node_modules/date-now/index.js +5 -0
  977. data/test/dummy/node_modules/date-now/package.json +115 -0
  978. data/test/dummy/node_modules/date-now/seed.js +16 -0
  979. data/test/dummy/node_modules/date-now/test/index.js +28 -0
  980. data/test/dummy/node_modules/date-now/test/static/index.html +10 -0
  981. data/test/dummy/node_modules/defined/LICENSE +18 -0
  982. data/test/dummy/node_modules/defined/example/defined.js +4 -0
  983. data/test/dummy/node_modules/defined/index.js +5 -0
  984. data/test/dummy/node_modules/defined/package.json +116 -0
  985. data/test/dummy/node_modules/defined/readme.markdown +53 -0
  986. data/test/dummy/node_modules/defined/test/def.js +22 -0
  987. data/test/dummy/node_modules/defined/test/falsy.js +9 -0
  988. data/test/dummy/node_modules/deps-sort/LICENSE +18 -0
  989. data/test/dummy/node_modules/deps-sort/bin/cmd.js +10 -0
  990. data/test/dummy/node_modules/deps-sort/example/sort.js +6 -0
  991. data/test/dummy/node_modules/deps-sort/index.js +122 -0
  992. data/test/dummy/node_modules/deps-sort/package.json +97 -0
  993. data/test/dummy/node_modules/deps-sort/readme.markdown +83 -0
  994. data/test/dummy/node_modules/deps-sort/test/dedupe-deps-of-deps.js +71 -0
  995. data/test/dummy/node_modules/deps-sort/test/dedupe.js +39 -0
  996. data/test/dummy/node_modules/deps-sort/test/dedupe_index.js +56 -0
  997. data/test/dummy/node_modules/deps-sort/test/dedupe_undef.js +37 -0
  998. data/test/dummy/node_modules/deps-sort/test/expose.js +38 -0
  999. data/test/dummy/node_modules/deps-sort/test/expose_str.js +44 -0
  1000. data/test/dummy/node_modules/deps-sort/test/indexed.js +38 -0
  1001. data/test/dummy/node_modules/deps-sort/test/sort.js +23 -0
  1002. data/test/dummy/node_modules/des.js/README.md +26 -0
  1003. data/test/dummy/node_modules/des.js/lib/des/cbc.js +65 -0
  1004. data/test/dummy/node_modules/des.js/lib/des/cipher.js +141 -0
  1005. data/test/dummy/node_modules/des.js/lib/des/des.js +143 -0
  1006. data/test/dummy/node_modules/des.js/lib/des/ede.js +55 -0
  1007. data/test/dummy/node_modules/des.js/lib/des/utils.js +256 -0
  1008. data/test/dummy/node_modules/des.js/lib/des.js +7 -0
  1009. data/test/dummy/node_modules/des.js/package.json +85 -0
  1010. data/test/dummy/node_modules/des.js/test/cbc-test.js +73 -0
  1011. data/test/dummy/node_modules/des.js/test/des-test.js +139 -0
  1012. data/test/dummy/node_modules/des.js/test/ede-test.js +73 -0
  1013. data/test/dummy/node_modules/des.js/test/fixtures.js +5 -0
  1014. data/test/dummy/node_modules/des.js/test/utils-test.js +169 -0
  1015. data/test/dummy/node_modules/detective/LICENSE +18 -0
  1016. data/test/dummy/node_modules/detective/bench/detect.js +7 -0
  1017. data/test/dummy/node_modules/detective/bench/esprima_v_acorn.txt +18 -0
  1018. data/test/dummy/node_modules/detective/example/strings.js +6 -0
  1019. data/test/dummy/node_modules/detective/example/strings_src.js +3 -0
  1020. data/test/dummy/node_modules/detective/index.js +71 -0
  1021. data/test/dummy/node_modules/detective/package.json +88 -0
  1022. data/test/dummy/node_modules/detective/readme.markdown +80 -0
  1023. data/test/dummy/node_modules/detective/test/both.js +26 -0
  1024. data/test/dummy/node_modules/detective/test/chained.js +9 -0
  1025. data/test/dummy/node_modules/detective/test/complicated.js +56 -0
  1026. data/test/dummy/node_modules/detective/test/es6-module.js +9 -0
  1027. data/test/dummy/node_modules/detective/test/files/both.js +4 -0
  1028. data/test/dummy/node_modules/detective/test/files/chained.js +5 -0
  1029. data/test/dummy/node_modules/detective/test/files/es6-module.js +5 -0
  1030. data/test/dummy/node_modules/detective/test/files/generators.js +5 -0
  1031. data/test/dummy/node_modules/detective/test/files/isrequire.js +14 -0
  1032. data/test/dummy/node_modules/detective/test/files/nested.js +22 -0
  1033. data/test/dummy/node_modules/detective/test/files/shebang.js +5 -0
  1034. data/test/dummy/node_modules/detective/test/files/sparse-array.js +3 -0
  1035. data/test/dummy/node_modules/detective/test/files/strings.js +13 -0
  1036. data/test/dummy/node_modules/detective/test/files/word.js +13 -0
  1037. data/test/dummy/node_modules/detective/test/files/yield.js +4 -0
  1038. data/test/dummy/node_modules/detective/test/generators.js +9 -0
  1039. data/test/dummy/node_modules/detective/test/isrequire.js +20 -0
  1040. data/test/dummy/node_modules/detective/test/nested.js +9 -0
  1041. data/test/dummy/node_modules/detective/test/noargs.js +26 -0
  1042. data/test/dummy/node_modules/detective/test/parseopts.js +62 -0
  1043. data/test/dummy/node_modules/detective/test/return.js +9 -0
  1044. data/test/dummy/node_modules/detective/test/shebang.js +9 -0
  1045. data/test/dummy/node_modules/detective/test/sparse-array.js +14 -0
  1046. data/test/dummy/node_modules/detective/test/strings.js +9 -0
  1047. data/test/dummy/node_modules/detective/test/word.js +12 -0
  1048. data/test/dummy/node_modules/detective/test/yield.js +9 -0
  1049. data/test/dummy/node_modules/diffie-hellman/browser.js +42 -0
  1050. data/test/dummy/node_modules/diffie-hellman/index.js +10 -0
  1051. data/test/dummy/node_modules/diffie-hellman/lib/dh.js +164 -0
  1052. data/test/dummy/node_modules/diffie-hellman/lib/generatePrime.js +105 -0
  1053. data/test/dummy/node_modules/diffie-hellman/lib/primes.json +34 -0
  1054. data/test/dummy/node_modules/diffie-hellman/package.json +101 -0
  1055. data/test/dummy/node_modules/diffie-hellman/readme.md +4 -0
  1056. data/test/dummy/node_modules/domain-browser/HISTORY.md +42 -0
  1057. data/test/dummy/node_modules/domain-browser/LICENSE.md +23 -0
  1058. data/test/dummy/node_modules/domain-browser/README.md +111 -0
  1059. data/test/dummy/node_modules/domain-browser/index.js +69 -0
  1060. data/test/dummy/node_modules/domain-browser/package.json +173 -0
  1061. data/test/dummy/node_modules/domain-browser/test.js +100 -0
  1062. data/test/dummy/node_modules/duplexer2/LICENSE.md +26 -0
  1063. data/test/dummy/node_modules/duplexer2/README.md +115 -0
  1064. data/test/dummy/node_modules/duplexer2/index.js +76 -0
  1065. data/test/dummy/node_modules/duplexer2/package.json +97 -0
  1066. data/test/dummy/node_modules/elliptic/README.md +170 -0
  1067. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/base.js +351 -0
  1068. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/edwards.js +410 -0
  1069. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/index.js +8 -0
  1070. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/mont.js +176 -0
  1071. data/test/dummy/node_modules/elliptic/lib/elliptic/curve/short.js +909 -0
  1072. data/test/dummy/node_modules/elliptic/lib/elliptic/curves.js +205 -0
  1073. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/index.js +222 -0
  1074. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/key.js +107 -0
  1075. data/test/dummy/node_modules/elliptic/lib/elliptic/ec/signature.js +135 -0
  1076. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/index.js +118 -0
  1077. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/key.js +96 -0
  1078. data/test/dummy/node_modules/elliptic/lib/elliptic/eddsa/signature.js +66 -0
  1079. data/test/dummy/node_modules/elliptic/lib/elliptic/hmac-drbg.js +114 -0
  1080. data/test/dummy/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
  1081. data/test/dummy/node_modules/elliptic/lib/elliptic/utils.js +173 -0
  1082. data/test/dummy/node_modules/elliptic/lib/elliptic.js +14 -0
  1083. data/test/dummy/node_modules/elliptic/package.json +99 -0
  1084. data/test/dummy/node_modules/esmangle-evaluator/README.md +24 -0
  1085. data/test/dummy/node_modules/esmangle-evaluator/common.js +58 -0
  1086. data/test/dummy/node_modules/esmangle-evaluator/evaluator.js +364 -0
  1087. data/test/dummy/node_modules/esmangle-evaluator/package.json +73 -0
  1088. data/test/dummy/node_modules/esprima/ChangeLog +170 -0
  1089. data/test/dummy/node_modules/esprima/LICENSE.BSD +21 -0
  1090. data/test/dummy/node_modules/esprima/README.md +27 -0
  1091. data/test/dummy/node_modules/esprima/bin/esparse.js +126 -0
  1092. data/test/dummy/node_modules/esprima/bin/esvalidate.js +199 -0
  1093. data/test/dummy/node_modules/esprima/esprima.js +5739 -0
  1094. data/test/dummy/node_modules/esprima/package.json +145 -0
  1095. data/test/dummy/node_modules/events/History.md +38 -0
  1096. data/test/dummy/node_modules/events/LICENSE +22 -0
  1097. data/test/dummy/node_modules/events/Readme.md +19 -0
  1098. data/test/dummy/node_modules/events/events.js +298 -0
  1099. data/test/dummy/node_modules/events/package.json +91 -0
  1100. data/test/dummy/node_modules/events/tests/add-listeners.js +63 -0
  1101. data/test/dummy/node_modules/events/tests/check-listener-leaks.js +86 -0
  1102. data/test/dummy/node_modules/events/tests/common.js +42 -0
  1103. data/test/dummy/node_modules/events/tests/index.js +25 -0
  1104. data/test/dummy/node_modules/events/tests/legacy-compat.js +18 -0
  1105. data/test/dummy/node_modules/events/tests/listener-count.js +36 -0
  1106. data/test/dummy/node_modules/events/tests/listeners-side-effects.js +55 -0
  1107. data/test/dummy/node_modules/events/tests/listeners.js +51 -0
  1108. data/test/dummy/node_modules/events/tests/max-listeners.js +50 -0
  1109. data/test/dummy/node_modules/events/tests/modify-in-emit.js +76 -0
  1110. data/test/dummy/node_modules/events/tests/num-args.js +44 -0
  1111. data/test/dummy/node_modules/events/tests/once.js +59 -0
  1112. data/test/dummy/node_modules/events/tests/remove-all-listeners.js +80 -0
  1113. data/test/dummy/node_modules/events/tests/remove-listeners.js +84 -0
  1114. data/test/dummy/node_modules/events/tests/set-max-listeners-side-effects.js +29 -0
  1115. data/test/dummy/node_modules/events/tests/subclass.js +51 -0
  1116. data/test/dummy/node_modules/evp_bytestokey/index.js +68 -0
  1117. data/test/dummy/node_modules/evp_bytestokey/package.json +84 -0
  1118. data/test/dummy/node_modules/evp_bytestokey/readme.md +13 -0
  1119. data/test/dummy/node_modules/evp_bytestokey/test.js +19 -0
  1120. data/test/dummy/node_modules/expand-brackets/LICENSE +21 -0
  1121. data/test/dummy/node_modules/expand-brackets/README.md +107 -0
  1122. data/test/dummy/node_modules/expand-brackets/index.js +163 -0
  1123. data/test/dummy/node_modules/expand-brackets/package.json +128 -0
  1124. data/test/dummy/node_modules/expand-range/LICENSE +24 -0
  1125. data/test/dummy/node_modules/expand-range/README.md +107 -0
  1126. data/test/dummy/node_modules/expand-range/index.js +43 -0
  1127. data/test/dummy/node_modules/expand-range/package.json +107 -0
  1128. data/test/dummy/node_modules/extglob/LICENSE +21 -0
  1129. data/test/dummy/node_modules/extglob/README.md +88 -0
  1130. data/test/dummy/node_modules/extglob/index.js +178 -0
  1131. data/test/dummy/node_modules/extglob/package.json +108 -0
  1132. data/test/dummy/node_modules/falafel/example/array.js +14 -0
  1133. data/test/dummy/node_modules/falafel/example/keyword.js +16 -0
  1134. data/test/dummy/node_modules/falafel/example/prompt.js +49 -0
  1135. data/test/dummy/node_modules/falafel/index.js +79 -0
  1136. data/test/dummy/node_modules/falafel/package.json +137 -0
  1137. data/test/dummy/node_modules/falafel/readme.markdown +122 -0
  1138. data/test/dummy/node_modules/falafel/test/array.js +35 -0
  1139. data/test/dummy/node_modules/falafel/test/async.js +42 -0
  1140. data/test/dummy/node_modules/falafel/test/bin/run.js +5 -0
  1141. data/test/dummy/node_modules/falafel/test/custom-parser.js +42 -0
  1142. data/test/dummy/node_modules/falafel/test/es6.js +15 -0
  1143. data/test/dummy/node_modules/falafel/test/for.js +30 -0
  1144. data/test/dummy/node_modules/falafel/test/inspect.js +36 -0
  1145. data/test/dummy/node_modules/falafel/test/opts.js +134 -0
  1146. data/test/dummy/node_modules/falafel/test/parent.js +33 -0
  1147. data/test/dummy/node_modules/filename-regex/README.md +51 -0
  1148. data/test/dummy/node_modules/filename-regex/index.js +10 -0
  1149. data/test/dummy/node_modules/filename-regex/package.json +92 -0
  1150. data/test/dummy/node_modules/fill-range/LICENSE +21 -0
  1151. data/test/dummy/node_modules/fill-range/README.md +290 -0
  1152. data/test/dummy/node_modules/fill-range/index.js +408 -0
  1153. data/test/dummy/node_modules/fill-range/package.json +123 -0
  1154. data/test/dummy/node_modules/for-in/LICENSE +21 -0
  1155. data/test/dummy/node_modules/for-in/README.md +74 -0
  1156. data/test/dummy/node_modules/for-in/index.js +16 -0
  1157. data/test/dummy/node_modules/for-in/package.json +119 -0
  1158. data/test/dummy/node_modules/for-own/LICENSE +21 -0
  1159. data/test/dummy/node_modules/for-own/README.md +52 -0
  1160. data/test/dummy/node_modules/for-own/index.js +19 -0
  1161. data/test/dummy/node_modules/for-own/package.json +120 -0
  1162. data/test/dummy/node_modules/foreach/LICENSE +24 -0
  1163. data/test/dummy/node_modules/foreach/Makefile +11 -0
  1164. data/test/dummy/node_modules/foreach/Readme.md +30 -0
  1165. data/test/dummy/node_modules/foreach/component.json +11 -0
  1166. data/test/dummy/node_modules/foreach/index.js +22 -0
  1167. data/test/dummy/node_modules/foreach/package.json +109 -0
  1168. data/test/dummy/node_modules/foreach/test.js +153 -0
  1169. data/test/dummy/node_modules/fsevents/LICENSE +22 -0
  1170. data/test/dummy/node_modules/fsevents/Readme.md +78 -0
  1171. data/test/dummy/node_modules/fsevents/binding.gyp +29 -0
  1172. data/test/dummy/node_modules/fsevents/fsevents.cc +102 -0
  1173. data/test/dummy/node_modules/fsevents/fsevents.js +105 -0
  1174. data/test/dummy/node_modules/fsevents/lib/binding/Release/node-v47-darwin-x64/fse.node +0 -0
  1175. data/test/dummy/node_modules/fsevents/node_modules/ansi/History.md +23 -0
  1176. data/test/dummy/node_modules/fsevents/node_modules/ansi/LICENSE +24 -0
  1177. data/test/dummy/node_modules/fsevents/node_modules/ansi/README.md +98 -0
  1178. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/beep/index.js +16 -0
  1179. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/clear/index.js +15 -0
  1180. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/cursorPosition.js +32 -0
  1181. data/test/dummy/node_modules/fsevents/node_modules/ansi/examples/progress/index.js +87 -0
  1182. data/test/dummy/node_modules/fsevents/node_modules/ansi/lib/ansi.js +405 -0
  1183. data/test/dummy/node_modules/fsevents/node_modules/ansi/lib/newlines.js +71 -0
  1184. data/test/dummy/node_modules/fsevents/node_modules/ansi/package.json +69 -0
  1185. data/test/dummy/node_modules/fsevents/node_modules/ansi-regex/index.js +4 -0
  1186. data/test/dummy/node_modules/fsevents/node_modules/ansi-regex/package.json +95 -0
  1187. data/test/dummy/node_modules/fsevents/node_modules/ansi-regex/readme.md +31 -0
  1188. data/test/dummy/node_modules/fsevents/node_modules/ansi-styles/index.js +65 -0
  1189. data/test/dummy/node_modules/fsevents/node_modules/ansi-styles/package.json +89 -0
  1190. data/test/dummy/node_modules/fsevents/node_modules/ansi-styles/readme.md +86 -0
  1191. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/CHANGES.md +19 -0
  1192. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/LICENSE +5 -0
  1193. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/README.md +194 -0
  1194. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/index.js +4 -0
  1195. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/package.json +65 -0
  1196. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/lib/test-event.js +29 -0
  1197. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/tracker.js +57 -0
  1198. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/trackergroup.js +96 -0
  1199. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/test/trackerstream.js +51 -0
  1200. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker-base.js +11 -0
  1201. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker-group.js +107 -0
  1202. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker-stream.js +35 -0
  1203. data/test/dummy/node_modules/fsevents/node_modules/are-we-there-yet/tracker.js +30 -0
  1204. data/test/dummy/node_modules/fsevents/node_modules/asn1/LICENSE +19 -0
  1205. data/test/dummy/node_modules/fsevents/node_modules/asn1/README.md +50 -0
  1206. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/errors.js +13 -0
  1207. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/index.js +27 -0
  1208. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/reader.js +261 -0
  1209. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/types.js +36 -0
  1210. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/ber/writer.js +316 -0
  1211. data/test/dummy/node_modules/fsevents/node_modules/asn1/lib/index.js +20 -0
  1212. data/test/dummy/node_modules/fsevents/node_modules/asn1/package.json +72 -0
  1213. data/test/dummy/node_modules/fsevents/node_modules/asn1/tst/ber/reader.test.js +208 -0
  1214. data/test/dummy/node_modules/fsevents/node_modules/asn1/tst/ber/writer.test.js +370 -0
  1215. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/AUTHORS +6 -0
  1216. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/CHANGES.md +8 -0
  1217. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/README.md +155 -0
  1218. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/assert.js +206 -0
  1219. data/test/dummy/node_modules/fsevents/node_modules/assert-plus/package.json +90 -0
  1220. data/test/dummy/node_modules/fsevents/node_modules/async/README.md +1877 -0
  1221. data/test/dummy/node_modules/fsevents/node_modules/async/dist/async.js +1265 -0
  1222. data/test/dummy/node_modules/fsevents/node_modules/async/dist/async.min.js +2 -0
  1223. data/test/dummy/node_modules/fsevents/node_modules/async/lib/async.js +1265 -0
  1224. data/test/dummy/node_modules/fsevents/node_modules/async/package.json +131 -0
  1225. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/LICENSE +55 -0
  1226. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/README.md +4 -0
  1227. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/index.js +212 -0
  1228. data/test/dummy/node_modules/fsevents/node_modules/aws-sign2/package.json +55 -0
  1229. data/test/dummy/node_modules/fsevents/node_modules/aws4/LICENSE +19 -0
  1230. data/test/dummy/node_modules/fsevents/node_modules/aws4/README.md +514 -0
  1231. data/test/dummy/node_modules/fsevents/node_modules/aws4/aws4.js +318 -0
  1232. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/README.md +142 -0
  1233. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/lib/lru-cache.js +469 -0
  1234. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/LICENSE +15 -0
  1235. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/README.md +60 -0
  1236. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/map.js +9 -0
  1237. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/package.json +60 -0
  1238. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js +113 -0
  1239. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/test/basic.js +86 -0
  1240. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/CONTRIBUTING.md +4 -0
  1241. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/LICENSE +15 -0
  1242. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/README.md +204 -0
  1243. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/package.json +60 -0
  1244. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/test/basic.js +188 -0
  1245. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/yallist.js +360 -0
  1246. data/test/dummy/node_modules/fsevents/node_modules/aws4/node_modules/lru-cache/package.json +78 -0
  1247. data/test/dummy/node_modules/fsevents/node_modules/aws4/package.json +117 -0
  1248. data/test/dummy/node_modules/fsevents/node_modules/bl/LICENSE.md +13 -0
  1249. data/test/dummy/node_modules/fsevents/node_modules/bl/README.md +200 -0
  1250. data/test/dummy/node_modules/fsevents/node_modules/bl/bl.js +227 -0
  1251. data/test/dummy/node_modules/fsevents/node_modules/bl/package.json +72 -0
  1252. data/test/dummy/node_modules/fsevents/node_modules/bl/test/test.js +571 -0
  1253. data/test/dummy/node_modules/fsevents/node_modules/block-stream/LICENCE +25 -0
  1254. data/test/dummy/node_modules/fsevents/node_modules/block-stream/LICENSE +15 -0
  1255. data/test/dummy/node_modules/fsevents/node_modules/block-stream/README.md +14 -0
  1256. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/block-stream-pause.js +70 -0
  1257. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/block-stream.js +68 -0
  1258. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/dropper-pause.js +70 -0
  1259. data/test/dummy/node_modules/fsevents/node_modules/block-stream/bench/dropper.js +68 -0
  1260. data/test/dummy/node_modules/fsevents/node_modules/block-stream/block-stream.js +209 -0
  1261. data/test/dummy/node_modules/fsevents/node_modules/block-stream/package.json +62 -0
  1262. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/basic.js +27 -0
  1263. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/nopad-thorough.js +68 -0
  1264. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/nopad.js +57 -0
  1265. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/pause-resume.js +73 -0
  1266. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/thorough.js +68 -0
  1267. data/test/dummy/node_modules/fsevents/node_modules/block-stream/test/two-stream.js +59 -0
  1268. data/test/dummy/node_modules/fsevents/node_modules/boom/CONTRIBUTING.md +1 -0
  1269. data/test/dummy/node_modules/fsevents/node_modules/boom/LICENSE +28 -0
  1270. data/test/dummy/node_modules/fsevents/node_modules/boom/README.md +652 -0
  1271. data/test/dummy/node_modules/fsevents/node_modules/boom/images/boom.png +0 -0
  1272. data/test/dummy/node_modules/fsevents/node_modules/boom/lib/index.js +318 -0
  1273. data/test/dummy/node_modules/fsevents/node_modules/boom/package.json +72 -0
  1274. data/test/dummy/node_modules/fsevents/node_modules/boom/test/index.js +654 -0
  1275. data/test/dummy/node_modules/fsevents/node_modules/caseless/LICENSE +28 -0
  1276. data/test/dummy/node_modules/fsevents/node_modules/caseless/README.md +45 -0
  1277. data/test/dummy/node_modules/fsevents/node_modules/caseless/index.js +66 -0
  1278. data/test/dummy/node_modules/fsevents/node_modules/caseless/package.json +70 -0
  1279. data/test/dummy/node_modules/fsevents/node_modules/caseless/test.js +40 -0
  1280. data/test/dummy/node_modules/fsevents/node_modules/chalk/index.js +116 -0
  1281. data/test/dummy/node_modules/fsevents/node_modules/chalk/package.json +115 -0
  1282. data/test/dummy/node_modules/fsevents/node_modules/chalk/readme.md +213 -0
  1283. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/License +19 -0
  1284. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/Readme.md +138 -0
  1285. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/lib/combined_stream.js +188 -0
  1286. data/test/dummy/node_modules/fsevents/node_modules/combined-stream/package.json +75 -0
  1287. data/test/dummy/node_modules/fsevents/node_modules/commander/Readme.md +351 -0
  1288. data/test/dummy/node_modules/fsevents/node_modules/commander/index.js +1110 -0
  1289. data/test/dummy/node_modules/fsevents/node_modules/commander/package.json +78 -0
  1290. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/LICENSE +19 -0
  1291. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/README.md +3 -0
  1292. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/float.patch +604 -0
  1293. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/lib/util.js +107 -0
  1294. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/package.json +68 -0
  1295. data/test/dummy/node_modules/fsevents/node_modules/core-util-is/test.js +68 -0
  1296. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/LICENSE +28 -0
  1297. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/README.md +16 -0
  1298. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/lib/index.js +68 -0
  1299. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/package.json +68 -0
  1300. data/test/dummy/node_modules/fsevents/node_modules/cryptiles/test/index.js +102 -0
  1301. data/test/dummy/node_modules/fsevents/node_modules/dashdash/README.md +574 -0
  1302. data/test/dummy/node_modules/fsevents/node_modules/dashdash/etc/dashdash.bash_completion.in +388 -0
  1303. data/test/dummy/node_modules/fsevents/node_modules/dashdash/lib/dashdash.js +1022 -0
  1304. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/AUTHORS +6 -0
  1305. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/CHANGES.md +14 -0
  1306. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/README.md +162 -0
  1307. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/assert.js +211 -0
  1308. data/test/dummy/node_modules/fsevents/node_modules/dashdash/node_modules/assert-plus/package.json +90 -0
  1309. data/test/dummy/node_modules/fsevents/node_modules/dashdash/package.json +99 -0
  1310. data/test/dummy/node_modules/fsevents/node_modules/debug/History.md +195 -0
  1311. data/test/dummy/node_modules/fsevents/node_modules/debug/Makefile +36 -0
  1312. data/test/dummy/node_modules/fsevents/node_modules/debug/Readme.md +188 -0
  1313. data/test/dummy/node_modules/fsevents/node_modules/debug/bower.json +28 -0
  1314. data/test/dummy/node_modules/fsevents/node_modules/debug/browser.js +168 -0
  1315. data/test/dummy/node_modules/fsevents/node_modules/debug/component.json +19 -0
  1316. data/test/dummy/node_modules/fsevents/node_modules/debug/debug.js +197 -0
  1317. data/test/dummy/node_modules/fsevents/node_modules/debug/node.js +209 -0
  1318. data/test/dummy/node_modules/fsevents/node_modules/debug/package.json +80 -0
  1319. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/README.md +90 -0
  1320. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/index.js +1 -0
  1321. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/lib/deep-extend.js +144 -0
  1322. data/test/dummy/node_modules/fsevents/node_modules/deep-extend/package.json +95 -0
  1323. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/License +19 -0
  1324. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/Makefile +7 -0
  1325. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/Readme.md +141 -0
  1326. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  1327. data/test/dummy/node_modules/fsevents/node_modules/delayed-stream/package.json +71 -0
  1328. data/test/dummy/node_modules/fsevents/node_modules/delegates/History.md +22 -0
  1329. data/test/dummy/node_modules/fsevents/node_modules/delegates/License +20 -0
  1330. data/test/dummy/node_modules/fsevents/node_modules/delegates/Makefile +8 -0
  1331. data/test/dummy/node_modules/fsevents/node_modules/delegates/Readme.md +94 -0
  1332. data/test/dummy/node_modules/fsevents/node_modules/delegates/index.js +121 -0
  1333. data/test/dummy/node_modules/fsevents/node_modules/delegates/package.json +59 -0
  1334. data/test/dummy/node_modules/fsevents/node_modules/delegates/test/index.js +94 -0
  1335. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/LICENSE +21 -0
  1336. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/README.md +8 -0
  1337. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/index.js +57 -0
  1338. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/lib/LICENSE-jsbn +40 -0
  1339. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/lib/ec.js +561 -0
  1340. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/lib/sec.js +170 -0
  1341. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/package.json +64 -0
  1342. data/test/dummy/node_modules/fsevents/node_modules/ecc-jsbn/test.js +14 -0
  1343. data/test/dummy/node_modules/fsevents/node_modules/escape-string-regexp/index.js +11 -0
  1344. data/test/dummy/node_modules/fsevents/node_modules/escape-string-regexp/package.json +84 -0
  1345. data/test/dummy/node_modules/fsevents/node_modules/escape-string-regexp/readme.md +27 -0
  1346. data/test/dummy/node_modules/fsevents/node_modules/extend/CHANGELOG.md +69 -0
  1347. data/test/dummy/node_modules/fsevents/node_modules/extend/LICENSE +23 -0
  1348. data/test/dummy/node_modules/fsevents/node_modules/extend/README.md +62 -0
  1349. data/test/dummy/node_modules/fsevents/node_modules/extend/component.json +32 -0
  1350. data/test/dummy/node_modules/fsevents/node_modules/extend/index.js +86 -0
  1351. data/test/dummy/node_modules/fsevents/node_modules/extend/package.json +80 -0
  1352. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/LICENSE +19 -0
  1353. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/Makefile +23 -0
  1354. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/Makefile.deps +39 -0
  1355. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/Makefile.targ +285 -0
  1356. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/README.md +39 -0
  1357. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/examples/simple.js +2 -0
  1358. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/jsl.node.conf +137 -0
  1359. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/lib/extsprintf.js +166 -0
  1360. data/test/dummy/node_modules/fsevents/node_modules/extsprintf/package.json +49 -0
  1361. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/LICENSE +55 -0
  1362. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/README.md +4 -0
  1363. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/index.js +138 -0
  1364. data/test/dummy/node_modules/fsevents/node_modules/forever-agent/package.json +62 -0
  1365. data/test/dummy/node_modules/fsevents/node_modules/form-data/License +19 -0
  1366. data/test/dummy/node_modules/fsevents/node_modules/form-data/README.md +218 -0
  1367. data/test/dummy/node_modules/fsevents/node_modules/form-data/lib/browser.js +2 -0
  1368. data/test/dummy/node_modules/fsevents/node_modules/form-data/lib/form_data.js +411 -0
  1369. data/test/dummy/node_modules/fsevents/node_modules/form-data/lib/populate.js +9 -0
  1370. data/test/dummy/node_modules/fsevents/node_modules/form-data/package.json +112 -0
  1371. data/test/dummy/node_modules/fsevents/node_modules/form-data/wercker.yml +36 -0
  1372. data/test/dummy/node_modules/fsevents/node_modules/fstream/LICENSE +15 -0
  1373. data/test/dummy/node_modules/fsevents/node_modules/fstream/README.md +76 -0
  1374. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/filter-pipe.js +134 -0
  1375. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/pipe.js +118 -0
  1376. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/reader.js +68 -0
  1377. data/test/dummy/node_modules/fsevents/node_modules/fstream/examples/symlink-write.js +27 -0
  1378. data/test/dummy/node_modules/fsevents/node_modules/fstream/fstream.js +35 -0
  1379. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/abstract.js +85 -0
  1380. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/collect.js +68 -0
  1381. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/dir-reader.js +252 -0
  1382. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/dir-writer.js +174 -0
  1383. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/file-reader.js +150 -0
  1384. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/file-writer.js +107 -0
  1385. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/get-type.js +33 -0
  1386. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/link-reader.js +53 -0
  1387. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/link-writer.js +95 -0
  1388. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/proxy-reader.js +95 -0
  1389. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/proxy-writer.js +111 -0
  1390. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/reader.js +255 -0
  1391. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/socket-reader.js +36 -0
  1392. data/test/dummy/node_modules/fsevents/node_modules/fstream/lib/writer.js +390 -0
  1393. data/test/dummy/node_modules/fsevents/node_modules/fstream/package.json +80 -0
  1394. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/LICENSE +15 -0
  1395. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/README.md +22 -0
  1396. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/example/basic.js +13 -0
  1397. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/ignore.js +275 -0
  1398. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/README.md +216 -0
  1399. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/minimatch.js +912 -0
  1400. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/README.md +122 -0
  1401. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  1402. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  1403. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md +21 -0
  1404. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  1405. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +89 -0
  1406. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  1407. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +50 -0
  1408. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +80 -0
  1409. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +84 -0
  1410. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  1411. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  1412. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  1413. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  1414. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +91 -0
  1415. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  1416. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/package.json +86 -0
  1417. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/node_modules/minimatch/package.json +67 -0
  1418. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/package.json +68 -0
  1419. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/00-setup.js +71 -0
  1420. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/basic.js +28 -0
  1421. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/common.js +40 -0
  1422. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/ignore-most.js +41 -0
  1423. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/nested-ignores.js +51 -0
  1424. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/read-file-order.js +81 -0
  1425. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/unignore-child.js +38 -0
  1426. data/test/dummy/node_modules/fsevents/node_modules/fstream-ignore/test/zz-cleanup.js +10 -0
  1427. data/test/dummy/node_modules/fsevents/node_modules/gauge/LICENSE +13 -0
  1428. data/test/dummy/node_modules/fsevents/node_modules/gauge/README.md +166 -0
  1429. data/test/dummy/node_modules/fsevents/node_modules/gauge/example.png +0 -0
  1430. data/test/dummy/node_modules/fsevents/node_modules/gauge/package.json +72 -0
  1431. data/test/dummy/node_modules/fsevents/node_modules/gauge/progress-bar.js +225 -0
  1432. data/test/dummy/node_modules/fsevents/node_modules/gauge/test/progress-bar.js +176 -0
  1433. data/test/dummy/node_modules/fsevents/node_modules/generate-function/README.md +72 -0
  1434. data/test/dummy/node_modules/fsevents/node_modules/generate-function/example.js +27 -0
  1435. data/test/dummy/node_modules/fsevents/node_modules/generate-function/index.js +61 -0
  1436. data/test/dummy/node_modules/fsevents/node_modules/generate-function/package.json +61 -0
  1437. data/test/dummy/node_modules/fsevents/node_modules/generate-function/test.js +33 -0
  1438. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/LICENSE +21 -0
  1439. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/README.md +19 -0
  1440. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/index.js +12 -0
  1441. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/package.json +58 -0
  1442. data/test/dummy/node_modules/fsevents/node_modules/generate-object-property/test.js +12 -0
  1443. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/README.md +53 -0
  1444. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/fs.js +21 -0
  1445. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/graceful-fs.js +253 -0
  1446. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/legacy-streams.js +118 -0
  1447. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/package.json +85 -0
  1448. data/test/dummy/node_modules/fsevents/node_modules/graceful-fs/polyfills.js +252 -0
  1449. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/LICENSE +22 -0
  1450. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/README.md +17 -0
  1451. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/index.js +12 -0
  1452. data/test/dummy/node_modules/fsevents/node_modules/graceful-readlink/package.json +57 -0
  1453. data/test/dummy/node_modules/fsevents/node_modules/har-validator/README.md +309 -0
  1454. data/test/dummy/node_modules/fsevents/node_modules/har-validator/bin/har-validator +56 -0
  1455. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/async.js +14 -0
  1456. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/error.js +10 -0
  1457. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/index.js +22 -0
  1458. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/runner.js +29 -0
  1459. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/cache.json +13 -0
  1460. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/cacheEntry.json +31 -0
  1461. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/content.json +27 -0
  1462. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/cookie.json +34 -0
  1463. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/creator.json +18 -0
  1464. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/entry.json +51 -0
  1465. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/har.json +11 -0
  1466. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/index.js +49 -0
  1467. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/log.json +34 -0
  1468. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/page.json +30 -0
  1469. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/pageTimings.json +16 -0
  1470. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/postData.json +41 -0
  1471. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/record.json +18 -0
  1472. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/request.json +55 -0
  1473. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/response.json +52 -0
  1474. data/test/dummy/node_modules/fsevents/node_modules/har-validator/lib/schemas/timings.json +40 -0
  1475. data/test/dummy/node_modules/fsevents/node_modules/har-validator/package.json +94 -0
  1476. data/test/dummy/node_modules/fsevents/node_modules/has-ansi/index.js +4 -0
  1477. data/test/dummy/node_modules/fsevents/node_modules/has-ansi/package.json +92 -0
  1478. data/test/dummy/node_modules/fsevents/node_modules/has-ansi/readme.md +36 -0
  1479. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/LICENSE +14 -0
  1480. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/README.md +43 -0
  1481. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/index.js +21 -0
  1482. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/package.json +62 -0
  1483. data/test/dummy/node_modules/fsevents/node_modules/has-unicode/test/index.js +26 -0
  1484. data/test/dummy/node_modules/fsevents/node_modules/hawk/LICENSE +28 -0
  1485. data/test/dummy/node_modules/fsevents/node_modules/hawk/README.md +634 -0
  1486. data/test/dummy/node_modules/fsevents/node_modules/hawk/bower.json +24 -0
  1487. data/test/dummy/node_modules/fsevents/node_modules/hawk/component.json +19 -0
  1488. data/test/dummy/node_modules/fsevents/node_modules/hawk/dist/client.js +343 -0
  1489. data/test/dummy/node_modules/fsevents/node_modules/hawk/example/usage.js +78 -0
  1490. data/test/dummy/node_modules/fsevents/node_modules/hawk/images/hawk.png +0 -0
  1491. data/test/dummy/node_modules/fsevents/node_modules/hawk/images/logo.png +0 -0
  1492. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/browser.js +637 -0
  1493. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/client.js +369 -0
  1494. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/crypto.js +126 -0
  1495. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/index.js +15 -0
  1496. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/server.js +548 -0
  1497. data/test/dummy/node_modules/fsevents/node_modules/hawk/lib/utils.js +184 -0
  1498. data/test/dummy/node_modules/fsevents/node_modules/hawk/package.json +75 -0
  1499. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/browser.js +1492 -0
  1500. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/client.js +440 -0
  1501. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/crypto.js +70 -0
  1502. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/index.js +378 -0
  1503. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/readme.js +95 -0
  1504. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/server.js +1329 -0
  1505. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/uri.js +838 -0
  1506. data/test/dummy/node_modules/fsevents/node_modules/hawk/test/utils.js +149 -0
  1507. data/test/dummy/node_modules/fsevents/node_modules/hoek/CONTRIBUTING.md +1 -0
  1508. data/test/dummy/node_modules/fsevents/node_modules/hoek/LICENSE +31 -0
  1509. data/test/dummy/node_modules/fsevents/node_modules/hoek/README.md +584 -0
  1510. data/test/dummy/node_modules/fsevents/node_modules/hoek/images/hoek.png +0 -0
  1511. data/test/dummy/node_modules/fsevents/node_modules/hoek/lib/escape.js +132 -0
  1512. data/test/dummy/node_modules/fsevents/node_modules/hoek/lib/index.js +993 -0
  1513. data/test/dummy/node_modules/fsevents/node_modules/hoek/package.json +70 -0
  1514. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/escaper.js +88 -0
  1515. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/index.js +2513 -0
  1516. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/ignore.txt +0 -0
  1517. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/test1.js +1 -0
  1518. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/test2.js +1 -0
  1519. data/test/dummy/node_modules/fsevents/node_modules/hoek/test/modules/test3.js +1 -0
  1520. data/test/dummy/node_modules/fsevents/node_modules/http-signature/CHANGES.md +46 -0
  1521. data/test/dummy/node_modules/fsevents/node_modules/http-signature/LICENSE +18 -0
  1522. data/test/dummy/node_modules/fsevents/node_modules/http-signature/README.md +79 -0
  1523. data/test/dummy/node_modules/fsevents/node_modules/http-signature/http_signing.md +363 -0
  1524. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/index.js +29 -0
  1525. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/parser.js +318 -0
  1526. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/signer.js +399 -0
  1527. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/utils.js +112 -0
  1528. data/test/dummy/node_modules/fsevents/node_modules/http-signature/lib/verify.js +88 -0
  1529. data/test/dummy/node_modules/fsevents/node_modules/http-signature/package.json +90 -0
  1530. data/test/dummy/node_modules/fsevents/node_modules/inherits/LICENSE +16 -0
  1531. data/test/dummy/node_modules/fsevents/node_modules/inherits/README.md +42 -0
  1532. data/test/dummy/node_modules/fsevents/node_modules/inherits/inherits.js +1 -0
  1533. data/test/dummy/node_modules/fsevents/node_modules/inherits/inherits_browser.js +23 -0
  1534. data/test/dummy/node_modules/fsevents/node_modules/inherits/package.json +81 -0
  1535. data/test/dummy/node_modules/fsevents/node_modules/inherits/test.js +25 -0
  1536. data/test/dummy/node_modules/fsevents/node_modules/ini/README.md +102 -0
  1537. data/test/dummy/node_modules/fsevents/node_modules/ini/ini.js +190 -0
  1538. data/test/dummy/node_modules/fsevents/node_modules/ini/package.json +64 -0
  1539. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/LICENSE +21 -0
  1540. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/README.md +173 -0
  1541. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/example.js +18 -0
  1542. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/formats.js +14 -0
  1543. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/index.js +584 -0
  1544. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/package.json +83 -0
  1545. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/require.js +12 -0
  1546. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/fixtures/cosmic.js +84 -0
  1547. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/additionalItems.json +82 -0
  1548. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/additionalProperties.json +88 -0
  1549. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/allOf.json +112 -0
  1550. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/anyOf.json +68 -0
  1551. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/bignum.json +107 -0
  1552. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/default.json +49 -0
  1553. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/definitions.json +32 -0
  1554. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/dependencies.json +113 -0
  1555. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/enum.json +72 -0
  1556. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/format.json +143 -0
  1557. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/items.json +46 -0
  1558. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maxItems.json +28 -0
  1559. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maxLength.json +28 -0
  1560. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maxProperties.json +28 -0
  1561. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/maximum.json +42 -0
  1562. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minItems.json +28 -0
  1563. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minLength.json +28 -0
  1564. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minProperties.json +28 -0
  1565. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/minimum.json +42 -0
  1566. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +96 -0
  1567. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/not.json +96 -0
  1568. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndFormat.json +18 -0
  1569. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json +18 -0
  1570. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/oneOf.json +68 -0
  1571. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/pattern.json +23 -0
  1572. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/patternProperties.json +110 -0
  1573. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/properties.json +92 -0
  1574. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/ref.json +128 -0
  1575. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/refRemote.json +74 -0
  1576. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/required.json +39 -0
  1577. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/type.json +330 -0
  1578. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema-draft4/uniqueItems.json +79 -0
  1579. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/json-schema.js +23 -0
  1580. data/test/dummy/node_modules/fsevents/node_modules/is-my-json-valid/test/misc.js +447 -0
  1581. data/test/dummy/node_modules/fsevents/node_modules/is-property/LICENSE +22 -0
  1582. data/test/dummy/node_modules/fsevents/node_modules/is-property/README.md +28 -0
  1583. data/test/dummy/node_modules/fsevents/node_modules/is-property/is-property.js +5 -0
  1584. data/test/dummy/node_modules/fsevents/node_modules/is-property/package.json +66 -0
  1585. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/LICENSE.md +18 -0
  1586. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/README.md +16 -0
  1587. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/index.js +41 -0
  1588. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/package.json +64 -0
  1589. data/test/dummy/node_modules/fsevents/node_modules/is-typedarray/test.js +34 -0
  1590. data/test/dummy/node_modules/fsevents/node_modules/isarray/Makefile +6 -0
  1591. data/test/dummy/node_modules/fsevents/node_modules/isarray/README.md +60 -0
  1592. data/test/dummy/node_modules/fsevents/node_modules/isarray/component.json +19 -0
  1593. data/test/dummy/node_modules/fsevents/node_modules/isarray/index.js +5 -0
  1594. data/test/dummy/node_modules/fsevents/node_modules/isarray/package.json +78 -0
  1595. data/test/dummy/node_modules/fsevents/node_modules/isarray/test.js +20 -0
  1596. data/test/dummy/node_modules/fsevents/node_modules/isstream/LICENSE.md +11 -0
  1597. data/test/dummy/node_modules/fsevents/node_modules/isstream/README.md +66 -0
  1598. data/test/dummy/node_modules/fsevents/node_modules/isstream/isstream.js +27 -0
  1599. data/test/dummy/node_modules/fsevents/node_modules/isstream/package.json +67 -0
  1600. data/test/dummy/node_modules/fsevents/node_modules/isstream/test.js +168 -0
  1601. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/AUTHORS.md +3 -0
  1602. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/LICENSE +23 -0
  1603. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/README.md +51 -0
  1604. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/almond.0 +42 -0
  1605. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/almond.1 +13 -0
  1606. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/index.js +35 -0
  1607. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/jsdoc.json +19 -0
  1608. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/core.js +481 -0
  1609. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/curve255.js +221 -0
  1610. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/dh.js +111 -0
  1611. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/eddsa.js +573 -0
  1612. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/lib/utils.js +198 -0
  1613. data/test/dummy/node_modules/fsevents/node_modules/jodid25519/package.json +78 -0
  1614. data/test/dummy/node_modules/fsevents/node_modules/jsbn/LICENSE +40 -0
  1615. data/test/dummy/node_modules/fsevents/node_modules/jsbn/README.md +175 -0
  1616. data/test/dummy/node_modules/fsevents/node_modules/jsbn/example.html +12 -0
  1617. data/test/dummy/node_modules/fsevents/node_modules/jsbn/example.js +3 -0
  1618. data/test/dummy/node_modules/fsevents/node_modules/jsbn/index.js +1358 -0
  1619. data/test/dummy/node_modules/fsevents/node_modules/jsbn/package.json +61 -0
  1620. data/test/dummy/node_modules/fsevents/node_modules/json-schema/README.md +5 -0
  1621. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/hyper-schema +68 -0
  1622. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/json-ref +26 -0
  1623. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/links +33 -0
  1624. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-00/schema +155 -0
  1625. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/hyper-schema +68 -0
  1626. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/json-ref +26 -0
  1627. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/links +33 -0
  1628. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-01/schema +155 -0
  1629. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/hyper-schema +68 -0
  1630. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/json-ref +26 -0
  1631. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/links +35 -0
  1632. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-02/schema +166 -0
  1633. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/address +20 -0
  1634. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/calendar +53 -0
  1635. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/card +105 -0
  1636. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/geo +8 -0
  1637. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/examples/interfaces +23 -0
  1638. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/hyper-schema +60 -0
  1639. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/json-ref +26 -0
  1640. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/links +35 -0
  1641. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-03/schema +174 -0
  1642. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-04/hyper-schema +60 -0
  1643. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-04/links +41 -0
  1644. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-04/schema +189 -0
  1645. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-zyp-json-schema-03.xml +1120 -0
  1646. data/test/dummy/node_modules/fsevents/node_modules/json-schema/draft-zyp-json-schema-04.xml +1072 -0
  1647. data/test/dummy/node_modules/fsevents/node_modules/json-schema/lib/links.js +52 -0
  1648. data/test/dummy/node_modules/fsevents/node_modules/json-schema/lib/validate.js +260 -0
  1649. data/test/dummy/node_modules/fsevents/node_modules/json-schema/package.json +68 -0
  1650. data/test/dummy/node_modules/fsevents/node_modules/json-schema/test/tests.js +95 -0
  1651. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/CHANGELOG.md +14 -0
  1652. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/LICENSE +15 -0
  1653. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/Makefile +35 -0
  1654. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/README.md +52 -0
  1655. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/package.json +76 -0
  1656. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/stringify.js +27 -0
  1657. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/test/mocha.opts +2 -0
  1658. data/test/dummy/node_modules/fsevents/node_modules/json-stringify-safe/test/stringify_test.js +246 -0
  1659. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/README.md +32 -0
  1660. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/jsonpointer.js +76 -0
  1661. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/package.json +73 -0
  1662. data/test/dummy/node_modules/fsevents/node_modules/jsonpointer/test.js +98 -0
  1663. data/test/dummy/node_modules/fsevents/node_modules/jsprim/CHANGES.md +30 -0
  1664. data/test/dummy/node_modules/fsevents/node_modules/jsprim/LICENSE +19 -0
  1665. data/test/dummy/node_modules/fsevents/node_modules/jsprim/README.md +228 -0
  1666. data/test/dummy/node_modules/fsevents/node_modules/jsprim/lib/jsprim.js +478 -0
  1667. data/test/dummy/node_modules/fsevents/node_modules/jsprim/package.json +55 -0
  1668. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/LICENSE +23 -0
  1669. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/README.md +18 -0
  1670. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/index.js +296 -0
  1671. data/test/dummy/node_modules/fsevents/node_modules/lodash.pad/package.json +91 -0
  1672. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/LICENSE +23 -0
  1673. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/README.md +18 -0
  1674. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/index.js +285 -0
  1675. data/test/dummy/node_modules/fsevents/node_modules/lodash.padend/package.json +91 -0
  1676. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/LICENSE +23 -0
  1677. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/README.md +18 -0
  1678. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/index.js +285 -0
  1679. data/test/dummy/node_modules/fsevents/node_modules/lodash.padstart/package.json +91 -0
  1680. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/LICENSE +23 -0
  1681. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/README.md +18 -0
  1682. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/index.js +215 -0
  1683. data/test/dummy/node_modules/fsevents/node_modules/lodash.repeat/package.json +92 -0
  1684. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/LICENSE +23 -0
  1685. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/README.md +18 -0
  1686. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/index.js +164 -0
  1687. data/test/dummy/node_modules/fsevents/node_modules/lodash.tostring/package.json +91 -0
  1688. data/test/dummy/node_modules/fsevents/node_modules/mime-db/HISTORY.md +320 -0
  1689. data/test/dummy/node_modules/fsevents/node_modules/mime-db/LICENSE +22 -0
  1690. data/test/dummy/node_modules/fsevents/node_modules/mime-db/README.md +82 -0
  1691. data/test/dummy/node_modules/fsevents/node_modules/mime-db/db.json +6575 -0
  1692. data/test/dummy/node_modules/fsevents/node_modules/mime-db/index.js +11 -0
  1693. data/test/dummy/node_modules/fsevents/node_modules/mime-db/package.json +108 -0
  1694. data/test/dummy/node_modules/fsevents/node_modules/mime-types/HISTORY.md +191 -0
  1695. data/test/dummy/node_modules/fsevents/node_modules/mime-types/LICENSE +23 -0
  1696. data/test/dummy/node_modules/fsevents/node_modules/mime-types/README.md +103 -0
  1697. data/test/dummy/node_modules/fsevents/node_modules/mime-types/index.js +188 -0
  1698. data/test/dummy/node_modules/fsevents/node_modules/mime-types/package.json +98 -0
  1699. data/test/dummy/node_modules/fsevents/node_modules/minimist/LICENSE +18 -0
  1700. data/test/dummy/node_modules/fsevents/node_modules/minimist/example/parse.js +2 -0
  1701. data/test/dummy/node_modules/fsevents/node_modules/minimist/index.js +187 -0
  1702. data/test/dummy/node_modules/fsevents/node_modules/minimist/package.json +93 -0
  1703. data/test/dummy/node_modules/fsevents/node_modules/minimist/readme.markdown +73 -0
  1704. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/dash.js +24 -0
  1705. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/default_bool.js +20 -0
  1706. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/dotted.js +16 -0
  1707. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/long.js +31 -0
  1708. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/parse.js +318 -0
  1709. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/parse_modified.js +9 -0
  1710. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/short.js +67 -0
  1711. data/test/dummy/node_modules/fsevents/node_modules/minimist/test/whitespace.js +8 -0
  1712. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/LICENSE +21 -0
  1713. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/bin/cmd.js +33 -0
  1714. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/bin/usage.txt +12 -0
  1715. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/examples/pow.js +6 -0
  1716. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/index.js +98 -0
  1717. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/package.json +86 -0
  1718. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/readme.markdown +100 -0
  1719. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/chmod.js +41 -0
  1720. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/clobber.js +38 -0
  1721. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/mkdirp.js +28 -0
  1722. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/opts_fs.js +29 -0
  1723. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  1724. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/perm.js +32 -0
  1725. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/perm_sync.js +36 -0
  1726. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/race.js +37 -0
  1727. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/rel.js +32 -0
  1728. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/return.js +25 -0
  1729. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/return_sync.js +24 -0
  1730. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/root.js +19 -0
  1731. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/sync.js +32 -0
  1732. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/umask.js +28 -0
  1733. data/test/dummy/node_modules/fsevents/node_modules/mkdirp/test/umask_sync.js +32 -0
  1734. data/test/dummy/node_modules/fsevents/node_modules/ms/LICENSE +20 -0
  1735. data/test/dummy/node_modules/fsevents/node_modules/ms/README.md +35 -0
  1736. data/test/dummy/node_modules/fsevents/node_modules/ms/index.js +125 -0
  1737. data/test/dummy/node_modules/fsevents/node_modules/ms/package.json +56 -0
  1738. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/CHANGELOG.md +302 -0
  1739. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/LICENSE +27 -0
  1740. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/README.md +570 -0
  1741. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/appveyor.yml +30 -0
  1742. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp +131 -0
  1743. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp.cmd +2 -0
  1744. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/build.js +43 -0
  1745. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/clean.js +23 -0
  1746. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/configure.js +48 -0
  1747. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/info.js +40 -0
  1748. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/install.js +205 -0
  1749. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/node-pre-gyp.js +192 -0
  1750. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/package.js +46 -0
  1751. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/pre-binding.js +25 -0
  1752. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/publish.js +77 -0
  1753. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/rebuild.js +13 -0
  1754. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/reinstall.js +13 -0
  1755. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/reveal.js +31 -0
  1756. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/testbinary.js +73 -0
  1757. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/testpackage.js +49 -0
  1758. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/unpublish.js +41 -0
  1759. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +1190 -0
  1760. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/compile.js +87 -0
  1761. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/handle_gyp_opts.js +94 -0
  1762. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/nw-pre-gyp/index.html +26 -0
  1763. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/nw-pre-gyp/package.json +9 -0
  1764. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/s3_setup.js +27 -0
  1765. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/versioning.js +308 -0
  1766. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/LICENSE +15 -0
  1767. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/README.md +211 -0
  1768. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/bin/nopt.js +54 -0
  1769. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/examples/my-program.js +30 -0
  1770. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/lib/nopt.js +415 -0
  1771. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md +3 -0
  1772. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/LICENSE +15 -0
  1773. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/README.md +23 -0
  1774. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/abbrev.js +62 -0
  1775. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/package.json +56 -0
  1776. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/node_modules/abbrev/test.js +47 -0
  1777. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/package.json +70 -0
  1778. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/node_modules/nopt/test/basic.js +273 -0
  1779. data/test/dummy/node_modules/fsevents/node_modules/node-pre-gyp/package.json +139 -0
  1780. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/LICENSE.md +21 -0
  1781. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/README.md +254 -0
  1782. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/README.md +53 -0
  1783. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/bench.gnu +174 -0
  1784. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/bench.sh +34 -0
  1785. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/benchmark-native.c +34 -0
  1786. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/benchmark/benchmark.js +84 -0
  1787. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/bin/uuid +26 -0
  1788. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/bower.json +23 -0
  1789. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/component.json +25 -0
  1790. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/package.json +87 -0
  1791. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/test/compare_v1.js +63 -0
  1792. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/test/test.html +17 -0
  1793. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/test/test.js +231 -0
  1794. data/test/dummy/node_modules/fsevents/node_modules/node-uuid/uuid.js +272 -0
  1795. data/test/dummy/node_modules/fsevents/node_modules/npmlog/LICENSE +15 -0
  1796. data/test/dummy/node_modules/fsevents/node_modules/npmlog/README.md +195 -0
  1797. data/test/dummy/node_modules/fsevents/node_modules/npmlog/example.js +39 -0
  1798. data/test/dummy/node_modules/fsevents/node_modules/npmlog/log.js +251 -0
  1799. data/test/dummy/node_modules/fsevents/node_modules/npmlog/package.json +74 -0
  1800. data/test/dummy/node_modules/fsevents/node_modules/npmlog/test/basic.js +235 -0
  1801. data/test/dummy/node_modules/fsevents/node_modules/npmlog/test/progress.js +131 -0
  1802. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/LICENSE +55 -0
  1803. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/README.md +4 -0
  1804. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/index.js +136 -0
  1805. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/package.json +66 -0
  1806. data/test/dummy/node_modules/fsevents/node_modules/oauth-sign/test.js +89 -0
  1807. data/test/dummy/node_modules/fsevents/node_modules/once/README.md +51 -0
  1808. data/test/dummy/node_modules/fsevents/node_modules/once/once.js +21 -0
  1809. data/test/dummy/node_modules/fsevents/node_modules/once/package.json +70 -0
  1810. data/test/dummy/node_modules/fsevents/node_modules/pinkie/index.js +292 -0
  1811. data/test/dummy/node_modules/fsevents/node_modules/pinkie/package.json +75 -0
  1812. data/test/dummy/node_modules/fsevents/node_modules/pinkie/readme.md +83 -0
  1813. data/test/dummy/node_modules/fsevents/node_modules/pinkie-promise/index.js +3 -0
  1814. data/test/dummy/node_modules/fsevents/node_modules/pinkie-promise/package.json +72 -0
  1815. data/test/dummy/node_modules/fsevents/node_modules/pinkie-promise/readme.md +28 -0
  1816. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/index.js +20 -0
  1817. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/license.md +19 -0
  1818. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/package.json +53 -0
  1819. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/readme.md +18 -0
  1820. data/test/dummy/node_modules/fsevents/node_modules/process-nextick-args/test.js +24 -0
  1821. data/test/dummy/node_modules/fsevents/node_modules/qs/CHANGELOG.md +110 -0
  1822. data/test/dummy/node_modules/fsevents/node_modules/qs/CONTRIBUTING.md +1 -0
  1823. data/test/dummy/node_modules/fsevents/node_modules/qs/LICENSE +28 -0
  1824. data/test/dummy/node_modules/fsevents/node_modules/qs/README.md +335 -0
  1825. data/test/dummy/node_modules/fsevents/node_modules/qs/bower.json +22 -0
  1826. data/test/dummy/node_modules/fsevents/node_modules/qs/component.json +15 -0
  1827. data/test/dummy/node_modules/fsevents/node_modules/qs/dist/qs.js +475 -0
  1828. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/index.js +9 -0
  1829. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/parse.js +164 -0
  1830. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/stringify.js +130 -0
  1831. data/test/dummy/node_modules/fsevents/node_modules/qs/lib/utils.js +162 -0
  1832. data/test/dummy/node_modules/fsevents/node_modules/qs/package.json +88 -0
  1833. data/test/dummy/node_modules/fsevents/node_modules/qs/test/index.js +5 -0
  1834. data/test/dummy/node_modules/fsevents/node_modules/qs/test/parse.js +393 -0
  1835. data/test/dummy/node_modules/fsevents/node_modules/qs/test/stringify.js +235 -0
  1836. data/test/dummy/node_modules/fsevents/node_modules/qs/test/utils.js +9 -0
  1837. data/test/dummy/node_modules/fsevents/node_modules/rc/LICENSE.APACHE2 +15 -0
  1838. data/test/dummy/node_modules/fsevents/node_modules/rc/LICENSE.BSD +26 -0
  1839. data/test/dummy/node_modules/fsevents/node_modules/rc/LICENSE.MIT +24 -0
  1840. data/test/dummy/node_modules/fsevents/node_modules/rc/README.md +149 -0
  1841. data/test/dummy/node_modules/fsevents/node_modules/rc/browser.js +7 -0
  1842. data/test/dummy/node_modules/fsevents/node_modules/rc/index.js +60 -0
  1843. data/test/dummy/node_modules/fsevents/node_modules/rc/lib/utils.js +103 -0
  1844. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/LICENSE +18 -0
  1845. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/example/parse.js +2 -0
  1846. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/index.js +236 -0
  1847. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/package.json +79 -0
  1848. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/readme.markdown +91 -0
  1849. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/all_bool.js +32 -0
  1850. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/bool.js +166 -0
  1851. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/dash.js +31 -0
  1852. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/default_bool.js +35 -0
  1853. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/dotted.js +22 -0
  1854. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/kv_short.js +16 -0
  1855. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/long.js +31 -0
  1856. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/num.js +36 -0
  1857. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/parse.js +197 -0
  1858. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/parse_modified.js +9 -0
  1859. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/short.js +67 -0
  1860. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/stop_early.js +15 -0
  1861. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/unknown.js +102 -0
  1862. data/test/dummy/node_modules/fsevents/node_modules/rc/node_modules/minimist/test/whitespace.js +8 -0
  1863. data/test/dummy/node_modules/fsevents/node_modules/rc/package.json +71 -0
  1864. data/test/dummy/node_modules/fsevents/node_modules/rc/test/ini.js +16 -0
  1865. data/test/dummy/node_modules/fsevents/node_modules/rc/test/nested-env-vars.js +40 -0
  1866. data/test/dummy/node_modules/fsevents/node_modules/rc/test/test.js +59 -0
  1867. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/LICENSE +18 -0
  1868. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/README.md +36 -0
  1869. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/doc/stream.markdown +1760 -0
  1870. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  1871. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/duplex.js +1 -0
  1872. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  1873. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  1874. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  1875. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  1876. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  1877. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/package.json +89 -0
  1878. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/passthrough.js +1 -0
  1879. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/readable.js +12 -0
  1880. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/transform.js +1 -0
  1881. data/test/dummy/node_modules/fsevents/node_modules/readable-stream/writable.js +1 -0
  1882. data/test/dummy/node_modules/fsevents/node_modules/request/CHANGELOG.md +593 -0
  1883. data/test/dummy/node_modules/fsevents/node_modules/request/CONTRIBUTING.md +44 -0
  1884. data/test/dummy/node_modules/fsevents/node_modules/request/LICENSE +55 -0
  1885. data/test/dummy/node_modules/fsevents/node_modules/request/README.md +1094 -0
  1886. data/test/dummy/node_modules/fsevents/node_modules/request/index.js +156 -0
  1887. data/test/dummy/node_modules/fsevents/node_modules/request/lib/auth.js +168 -0
  1888. data/test/dummy/node_modules/fsevents/node_modules/request/lib/cookies.js +39 -0
  1889. data/test/dummy/node_modules/fsevents/node_modules/request/lib/getProxyFromURI.js +79 -0
  1890. data/test/dummy/node_modules/fsevents/node_modules/request/lib/har.js +215 -0
  1891. data/test/dummy/node_modules/fsevents/node_modules/request/lib/helpers.js +74 -0
  1892. data/test/dummy/node_modules/fsevents/node_modules/request/lib/multipart.js +112 -0
  1893. data/test/dummy/node_modules/fsevents/node_modules/request/lib/oauth.js +147 -0
  1894. data/test/dummy/node_modules/fsevents/node_modules/request/lib/querystring.js +51 -0
  1895. data/test/dummy/node_modules/fsevents/node_modules/request/lib/redirect.js +153 -0
  1896. data/test/dummy/node_modules/fsevents/node_modules/request/lib/tunnel.js +176 -0
  1897. data/test/dummy/node_modules/fsevents/node_modules/request/package.json +122 -0
  1898. data/test/dummy/node_modules/fsevents/node_modules/request/request.js +1419 -0
  1899. data/test/dummy/node_modules/fsevents/node_modules/rimraf/LICENSE +15 -0
  1900. data/test/dummy/node_modules/fsevents/node_modules/rimraf/README.md +101 -0
  1901. data/test/dummy/node_modules/fsevents/node_modules/rimraf/bin.js +40 -0
  1902. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/README.md +365 -0
  1903. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/common.js +235 -0
  1904. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/glob.js +782 -0
  1905. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/LICENSE +15 -0
  1906. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/README.md +37 -0
  1907. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/inflight.js +44 -0
  1908. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
  1909. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
  1910. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +59 -0
  1911. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
  1912. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
  1913. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/package.json +68 -0
  1914. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inflight/test.js +97 -0
  1915. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  1916. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/README.md +42 -0
  1917. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  1918. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  1919. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/package.json +59 -0
  1920. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/inherits/test.js +25 -0
  1921. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/README.md +216 -0
  1922. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/minimatch.js +912 -0
  1923. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +122 -0
  1924. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  1925. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  1926. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md +21 -0
  1927. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  1928. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +89 -0
  1929. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  1930. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +50 -0
  1931. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +80 -0
  1932. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +84 -0
  1933. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  1934. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  1935. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  1936. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  1937. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +91 -0
  1938. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  1939. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +86 -0
  1940. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/minimatch/package.json +67 -0
  1941. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/README.md +51 -0
  1942. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  1943. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
  1944. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +59 -0
  1945. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  1946. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  1947. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/once.js +21 -0
  1948. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/once/package.json +71 -0
  1949. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/index.js +20 -0
  1950. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/package.json +79 -0
  1951. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/readme.md +51 -0
  1952. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/package.json +85 -0
  1953. data/test/dummy/node_modules/fsevents/node_modules/rimraf/node_modules/glob/sync.js +467 -0
  1954. data/test/dummy/node_modules/fsevents/node_modules/rimraf/package.json +76 -0
  1955. data/test/dummy/node_modules/fsevents/node_modules/rimraf/rimraf.js +335 -0
  1956. data/test/dummy/node_modules/fsevents/node_modules/semver/LICENSE +15 -0
  1957. data/test/dummy/node_modules/fsevents/node_modules/semver/README.md +327 -0
  1958. data/test/dummy/node_modules/fsevents/node_modules/semver/bin/semver +133 -0
  1959. data/test/dummy/node_modules/fsevents/node_modules/semver/package.json +60 -0
  1960. data/test/dummy/node_modules/fsevents/node_modules/semver/range.bnf +16 -0
  1961. data/test/dummy/node_modules/fsevents/node_modules/semver/semver.js +1188 -0
  1962. data/test/dummy/node_modules/fsevents/node_modules/semver/test/big-numbers.js +31 -0
  1963. data/test/dummy/node_modules/fsevents/node_modules/semver/test/clean.js +29 -0
  1964. data/test/dummy/node_modules/fsevents/node_modules/semver/test/gtr.js +173 -0
  1965. data/test/dummy/node_modules/fsevents/node_modules/semver/test/index.js +698 -0
  1966. data/test/dummy/node_modules/fsevents/node_modules/semver/test/ltr.js +181 -0
  1967. data/test/dummy/node_modules/fsevents/node_modules/semver/test/major-minor-patch.js +72 -0
  1968. data/test/dummy/node_modules/fsevents/node_modules/sntp/LICENSE +28 -0
  1969. data/test/dummy/node_modules/fsevents/node_modules/sntp/Makefile +9 -0
  1970. data/test/dummy/node_modules/fsevents/node_modules/sntp/README.md +68 -0
  1971. data/test/dummy/node_modules/fsevents/node_modules/sntp/examples/offset.js +16 -0
  1972. data/test/dummy/node_modules/fsevents/node_modules/sntp/examples/time.js +25 -0
  1973. data/test/dummy/node_modules/fsevents/node_modules/sntp/index.js +1 -0
  1974. data/test/dummy/node_modules/fsevents/node_modules/sntp/lib/index.js +412 -0
  1975. data/test/dummy/node_modules/fsevents/node_modules/sntp/package.json +72 -0
  1976. data/test/dummy/node_modules/fsevents/node_modules/sntp/test/index.js +435 -0
  1977. data/test/dummy/node_modules/fsevents/node_modules/sshpk/LICENSE +18 -0
  1978. data/test/dummy/node_modules/fsevents/node_modules/sshpk/README.md +436 -0
  1979. data/test/dummy/node_modules/fsevents/node_modules/sshpk/bin/sshpk-conv +183 -0
  1980. data/test/dummy/node_modules/fsevents/node_modules/sshpk/bin/sshpk-sign +176 -0
  1981. data/test/dummy/node_modules/fsevents/node_modules/sshpk/bin/sshpk-verify +166 -0
  1982. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/algs.js +168 -0
  1983. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/dhe.js +311 -0
  1984. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/ed-compat.js +96 -0
  1985. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/errors.js +58 -0
  1986. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/fingerprint.js +140 -0
  1987. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/auto.js +73 -0
  1988. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/pem.js +152 -0
  1989. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/pkcs1.js +320 -0
  1990. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/pkcs8.js +510 -0
  1991. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/rfc4253.js +146 -0
  1992. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/ssh-private.js +138 -0
  1993. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/formats/ssh.js +114 -0
  1994. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/index.js +25 -0
  1995. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/key.js +266 -0
  1996. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/private-key.js +224 -0
  1997. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/signature.js +237 -0
  1998. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/ssh-buffer.js +124 -0
  1999. data/test/dummy/node_modules/fsevents/node_modules/sshpk/lib/utils.js +207 -0
  2000. data/test/dummy/node_modules/fsevents/node_modules/sshpk/man/man1/sshpk-conv.1 +135 -0
  2001. data/test/dummy/node_modules/fsevents/node_modules/sshpk/man/man1/sshpk-sign.1 +81 -0
  2002. data/test/dummy/node_modules/fsevents/node_modules/sshpk/man/man1/sshpk-verify.1 +68 -0
  2003. data/test/dummy/node_modules/fsevents/node_modules/sshpk/package.json +107 -0
  2004. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/LICENSE +20 -0
  2005. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/README.md +7 -0
  2006. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/index.js +221 -0
  2007. data/test/dummy/node_modules/fsevents/node_modules/string_decoder/package.json +61 -0
  2008. data/test/dummy/node_modules/fsevents/node_modules/stringstream/LICENSE.txt +22 -0
  2009. data/test/dummy/node_modules/fsevents/node_modules/stringstream/README.md +38 -0
  2010. data/test/dummy/node_modules/fsevents/node_modules/stringstream/example.js +27 -0
  2011. data/test/dummy/node_modules/fsevents/node_modules/stringstream/package.json +59 -0
  2012. data/test/dummy/node_modules/fsevents/node_modules/stringstream/stringstream.js +102 -0
  2013. data/test/dummy/node_modules/fsevents/node_modules/strip-ansi/index.js +6 -0
  2014. data/test/dummy/node_modules/fsevents/node_modules/strip-ansi/package.json +98 -0
  2015. data/test/dummy/node_modules/fsevents/node_modules/strip-ansi/readme.md +33 -0
  2016. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/cli.js +41 -0
  2017. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/package.json +86 -0
  2018. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/readme.md +80 -0
  2019. data/test/dummy/node_modules/fsevents/node_modules/strip-json-comments/strip-json-comments.js +73 -0
  2020. data/test/dummy/node_modules/fsevents/node_modules/supports-color/index.js +50 -0
  2021. data/test/dummy/node_modules/fsevents/node_modules/supports-color/package.json +87 -0
  2022. data/test/dummy/node_modules/fsevents/node_modules/supports-color/readme.md +36 -0
  2023. data/test/dummy/node_modules/fsevents/node_modules/tar/LICENSE +12 -0
  2024. data/test/dummy/node_modules/fsevents/node_modules/tar/README.md +50 -0
  2025. data/test/dummy/node_modules/fsevents/node_modules/tar/examples/extracter.js +19 -0
  2026. data/test/dummy/node_modules/fsevents/node_modules/tar/examples/packer.js +24 -0
  2027. data/test/dummy/node_modules/fsevents/node_modules/tar/examples/reader.js +36 -0
  2028. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/buffer-entry.js +30 -0
  2029. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/entry-writer.js +169 -0
  2030. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/entry.js +220 -0
  2031. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/extended-header-writer.js +191 -0
  2032. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/extended-header.js +140 -0
  2033. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/extract.js +94 -0
  2034. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/global-header-writer.js +14 -0
  2035. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/header.js +385 -0
  2036. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/pack.js +236 -0
  2037. data/test/dummy/node_modules/fsevents/node_modules/tar/lib/parse.js +275 -0
  2038. data/test/dummy/node_modules/fsevents/node_modules/tar/package.json +77 -0
  2039. data/test/dummy/node_modules/fsevents/node_modules/tar/tar.js +173 -0
  2040. data/test/dummy/node_modules/fsevents/node_modules/tar/test/00-setup-fixtures.js +53 -0
  2041. data/test/dummy/node_modules/fsevents/node_modules/tar/test/cb-never-called-1.0.1.tgz +0 -0
  2042. data/test/dummy/node_modules/fsevents/node_modules/tar/test/dir-normalization.js +177 -0
  2043. data/test/dummy/node_modules/fsevents/node_modules/tar/test/dir-normalization.tar +0 -0
  2044. data/test/dummy/node_modules/fsevents/node_modules/tar/test/error-on-broken.js +33 -0
  2045. data/test/dummy/node_modules/fsevents/node_modules/tar/test/extract-move.js +132 -0
  2046. data/test/dummy/node_modules/fsevents/node_modules/tar/test/extract.js +367 -0
  2047. data/test/dummy/node_modules/fsevents/node_modules/tar/test/fixtures.tgz +0 -0
  2048. data/test/dummy/node_modules/fsevents/node_modules/tar/test/header.js +183 -0
  2049. data/test/dummy/node_modules/fsevents/node_modules/tar/test/pack-no-proprietary.js +886 -0
  2050. data/test/dummy/node_modules/fsevents/node_modules/tar/test/pack.js +952 -0
  2051. data/test/dummy/node_modules/fsevents/node_modules/tar/test/parse-discard.js +29 -0
  2052. data/test/dummy/node_modules/fsevents/node_modules/tar/test/parse.js +359 -0
  2053. data/test/dummy/node_modules/fsevents/node_modules/tar/test/zz-cleanup.js +20 -0
  2054. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/LICENSE +23 -0
  2055. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/README.md +81 -0
  2056. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/index.js +240 -0
  2057. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/package.json +75 -0
  2058. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed-file.txt +1 -0
  2059. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed.tar +0 -0
  2060. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/packed.tar.gz +0 -0
  2061. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/bar.txt +1 -0
  2062. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/fixtures/to-pack/foo.txt +1 -0
  2063. data/test/dummy/node_modules/fsevents/node_modules/tar-pack/test/index.js +67 -0
  2064. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/README.md +492 -0
  2065. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/cookie.js +1342 -0
  2066. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/memstore.js +170 -0
  2067. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/pathMatch.js +61 -0
  2068. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
  2069. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/pubsuffix.js +98 -0
  2070. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/lib/store.js +71 -0
  2071. data/test/dummy/node_modules/fsevents/node_modules/tough-cookie/package.json +103 -0
  2072. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/LICENSE +55 -0
  2073. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/README.md +4 -0
  2074. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/index.js +243 -0
  2075. data/test/dummy/node_modules/fsevents/node_modules/tunnel-agent/package.json +67 -0
  2076. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/CHANGELOG.md +181 -0
  2077. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/COPYING.txt +9 -0
  2078. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/README.md +445 -0
  2079. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl-fast.js +2388 -0
  2080. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl-fast.min.js +2 -0
  2081. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl.js +1175 -0
  2082. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/nacl.min.js +1 -0
  2083. data/test/dummy/node_modules/fsevents/node_modules/tweetnacl/package.json +94 -0
  2084. data/test/dummy/node_modules/fsevents/node_modules/uid-number/LICENSE +15 -0
  2085. data/test/dummy/node_modules/fsevents/node_modules/uid-number/README.md +17 -0
  2086. data/test/dummy/node_modules/fsevents/node_modules/uid-number/get-uid-gid.js +24 -0
  2087. data/test/dummy/node_modules/fsevents/node_modules/uid-number/package.json +57 -0
  2088. data/test/dummy/node_modules/fsevents/node_modules/uid-number/uid-number.js +59 -0
  2089. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/History.md +16 -0
  2090. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/LICENSE +24 -0
  2091. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/README.md +53 -0
  2092. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/browser.js +67 -0
  2093. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/node.js +6 -0
  2094. data/test/dummy/node_modules/fsevents/node_modules/util-deprecate/package.json +63 -0
  2095. data/test/dummy/node_modules/fsevents/node_modules/verror/LICENSE +19 -0
  2096. data/test/dummy/node_modules/fsevents/node_modules/verror/Makefile +35 -0
  2097. data/test/dummy/node_modules/fsevents/node_modules/verror/Makefile.targ +285 -0
  2098. data/test/dummy/node_modules/fsevents/node_modules/verror/README.md +120 -0
  2099. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/levels-verror.js +36 -0
  2100. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/levels-werror.js +34 -0
  2101. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/varargs.js +6 -0
  2102. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/verror.js +13 -0
  2103. data/test/dummy/node_modules/fsevents/node_modules/verror/examples/werror.js +14 -0
  2104. data/test/dummy/node_modules/fsevents/node_modules/verror/jsl.node.conf +139 -0
  2105. data/test/dummy/node_modules/fsevents/node_modules/verror/lib/verror.js +157 -0
  2106. data/test/dummy/node_modules/fsevents/node_modules/verror/package.json +53 -0
  2107. data/test/dummy/node_modules/fsevents/node_modules/verror/tests/tst.inherit.js +100 -0
  2108. data/test/dummy/node_modules/fsevents/node_modules/verror/tests/tst.verror.js +156 -0
  2109. data/test/dummy/node_modules/fsevents/node_modules/verror/tests/tst.werror.js +179 -0
  2110. data/test/dummy/node_modules/fsevents/node_modules/wrappy/LICENSE +15 -0
  2111. data/test/dummy/node_modules/fsevents/node_modules/wrappy/README.md +36 -0
  2112. data/test/dummy/node_modules/fsevents/node_modules/wrappy/package.json +59 -0
  2113. data/test/dummy/node_modules/fsevents/node_modules/wrappy/test/basic.js +51 -0
  2114. data/test/dummy/node_modules/fsevents/node_modules/wrappy/wrappy.js +33 -0
  2115. data/test/dummy/node_modules/fsevents/node_modules/xtend/LICENCE +19 -0
  2116. data/test/dummy/node_modules/fsevents/node_modules/xtend/Makefile +4 -0
  2117. data/test/dummy/node_modules/fsevents/node_modules/xtend/README.md +32 -0
  2118. data/test/dummy/node_modules/fsevents/node_modules/xtend/immutable.js +19 -0
  2119. data/test/dummy/node_modules/fsevents/node_modules/xtend/mutable.js +17 -0
  2120. data/test/dummy/node_modules/fsevents/node_modules/xtend/package.json +91 -0
  2121. data/test/dummy/node_modules/fsevents/node_modules/xtend/test.js +83 -0
  2122. data/test/dummy/node_modules/fsevents/package.json +119 -0
  2123. data/test/dummy/node_modules/fsevents/src/async.cc +43 -0
  2124. data/test/dummy/node_modules/fsevents/src/constants.cc +110 -0
  2125. data/test/dummy/node_modules/fsevents/src/locking.cc +27 -0
  2126. data/test/dummy/node_modules/fsevents/src/methods.cc +42 -0
  2127. data/test/dummy/node_modules/fsevents/src/storage.cc +27 -0
  2128. data/test/dummy/node_modules/fsevents/src/thread.cc +72 -0
  2129. data/test/dummy/node_modules/fsevents/test/fsevents.js +27 -0
  2130. data/test/dummy/node_modules/fsevents/test/function.js +93 -0
  2131. data/test/dummy/node_modules/function-bind/LICENSE +20 -0
  2132. data/test/dummy/node_modules/function-bind/README.md +48 -0
  2133. data/test/dummy/node_modules/function-bind/implementation.js +48 -0
  2134. data/test/dummy/node_modules/function-bind/index.js +3 -0
  2135. data/test/dummy/node_modules/function-bind/package.json +129 -0
  2136. data/test/dummy/node_modules/function-bind/test/index.js +250 -0
  2137. data/test/dummy/node_modules/glob/LICENSE +15 -0
  2138. data/test/dummy/node_modules/glob/README.md +377 -0
  2139. data/test/dummy/node_modules/glob/common.js +245 -0
  2140. data/test/dummy/node_modules/glob/glob.js +752 -0
  2141. data/test/dummy/node_modules/glob/package.json +98 -0
  2142. data/test/dummy/node_modules/glob/sync.js +460 -0
  2143. data/test/dummy/node_modules/glob-base/LICENSE +21 -0
  2144. data/test/dummy/node_modules/glob-base/README.md +158 -0
  2145. data/test/dummy/node_modules/glob-base/index.js +51 -0
  2146. data/test/dummy/node_modules/glob-base/package.json +108 -0
  2147. data/test/dummy/node_modules/glob-parent/LICENSE +15 -0
  2148. data/test/dummy/node_modules/glob-parent/README.md +43 -0
  2149. data/test/dummy/node_modules/glob-parent/index.js +10 -0
  2150. data/test/dummy/node_modules/glob-parent/package.json +86 -0
  2151. data/test/dummy/node_modules/glob-parent/test.js +28 -0
  2152. data/test/dummy/node_modules/graceful-fs/LICENSE +15 -0
  2153. data/test/dummy/node_modules/graceful-fs/README.md +53 -0
  2154. data/test/dummy/node_modules/graceful-fs/fs.js +21 -0
  2155. data/test/dummy/node_modules/graceful-fs/graceful-fs.js +253 -0
  2156. data/test/dummy/node_modules/graceful-fs/legacy-streams.js +118 -0
  2157. data/test/dummy/node_modules/graceful-fs/package.json +103 -0
  2158. data/test/dummy/node_modules/graceful-fs/polyfills.js +252 -0
  2159. data/test/dummy/node_modules/has/LICENSE-MIT +22 -0
  2160. data/test/dummy/node_modules/has/README.mkd +18 -0
  2161. data/test/dummy/node_modules/has/package.json +85 -0
  2162. data/test/dummy/node_modules/has/src/index.js +3 -0
  2163. data/test/dummy/node_modules/has/test/index.js +10 -0
  2164. data/test/dummy/node_modules/hash.js/README.md +28 -0
  2165. data/test/dummy/node_modules/hash.js/lib/hash/common.js +91 -0
  2166. data/test/dummy/node_modules/hash.js/lib/hash/hmac.js +48 -0
  2167. data/test/dummy/node_modules/hash.js/lib/hash/ripemd.js +144 -0
  2168. data/test/dummy/node_modules/hash.js/lib/hash/sha.js +564 -0
  2169. data/test/dummy/node_modules/hash.js/lib/hash/utils.js +257 -0
  2170. data/test/dummy/node_modules/hash.js/lib/hash.js +15 -0
  2171. data/test/dummy/node_modules/hash.js/package.json +82 -0
  2172. data/test/dummy/node_modules/hash.js/test/hash-test.js +119 -0
  2173. data/test/dummy/node_modules/hash.js/test/hmac-test.js +59 -0
  2174. data/test/dummy/node_modules/htmlescape/CHANGELOG.md +9 -0
  2175. data/test/dummy/node_modules/htmlescape/LICENSE +9 -0
  2176. data/test/dummy/node_modules/htmlescape/README.md +30 -0
  2177. data/test/dummy/node_modules/htmlescape/htmlescape.js +42 -0
  2178. data/test/dummy/node_modules/htmlescape/package.json +88 -0
  2179. data/test/dummy/node_modules/https-browserify/LICENSE +18 -0
  2180. data/test/dummy/node_modules/https-browserify/index.js +14 -0
  2181. data/test/dummy/node_modules/https-browserify/package.json +84 -0
  2182. data/test/dummy/node_modules/https-browserify/readme.markdown +22 -0
  2183. data/test/dummy/node_modules/ieee754/LICENSE +56 -0
  2184. data/test/dummy/node_modules/ieee754/README.md +47 -0
  2185. data/test/dummy/node_modules/ieee754/index.js +84 -0
  2186. data/test/dummy/node_modules/ieee754/package.json +93 -0
  2187. data/test/dummy/node_modules/ieee754/test/basic.js +23 -0
  2188. data/test/dummy/node_modules/indexof/Makefile +11 -0
  2189. data/test/dummy/node_modules/indexof/Readme.md +15 -0
  2190. data/test/dummy/node_modules/indexof/component.json +10 -0
  2191. data/test/dummy/node_modules/indexof/index.js +10 -0
  2192. data/test/dummy/node_modules/indexof/package.json +58 -0
  2193. data/test/dummy/node_modules/inflight/LICENSE +15 -0
  2194. data/test/dummy/node_modules/inflight/README.md +37 -0
  2195. data/test/dummy/node_modules/inflight/inflight.js +44 -0
  2196. data/test/dummy/node_modules/inflight/package.json +86 -0
  2197. data/test/dummy/node_modules/inflight/test.js +97 -0
  2198. data/test/dummy/node_modules/inherits/LICENSE +16 -0
  2199. data/test/dummy/node_modules/inherits/README.md +42 -0
  2200. data/test/dummy/node_modules/inherits/inherits.js +1 -0
  2201. data/test/dummy/node_modules/inherits/inherits_browser.js +23 -0
  2202. data/test/dummy/node_modules/inherits/package.json +102 -0
  2203. data/test/dummy/node_modules/inherits/test.js +25 -0
  2204. data/test/dummy/node_modules/inline-process-browser/index.js +37 -0
  2205. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/LICENSE +18 -0
  2206. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/README.md +15 -0
  2207. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/duplex.js +1 -0
  2208. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  2209. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  2210. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  2211. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  2212. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  2213. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/package.json +104 -0
  2214. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/passthrough.js +1 -0
  2215. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/readable.js +11 -0
  2216. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/transform.js +1 -0
  2217. data/test/dummy/node_modules/inline-process-browser/node_modules/readable-stream/writable.js +1 -0
  2218. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/LICENSE +39 -0
  2219. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/README.md +132 -0
  2220. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/package.json +90 -0
  2221. data/test/dummy/node_modules/inline-process-browser/node_modules/through2/through2.js +96 -0
  2222. data/test/dummy/node_modules/inline-process-browser/package.json +88 -0
  2223. data/test/dummy/node_modules/inline-process-browser/readme.md +23 -0
  2224. data/test/dummy/node_modules/inline-source-map/LICENSE +23 -0
  2225. data/test/dummy/node_modules/inline-source-map/README.md +89 -0
  2226. data/test/dummy/node_modules/inline-source-map/example/foo-bar.js +8 -0
  2227. data/test/dummy/node_modules/inline-source-map/index.js +135 -0
  2228. data/test/dummy/node_modules/inline-source-map/package.json +103 -0
  2229. data/test/dummy/node_modules/inline-source-map/test/inline-source-map.js +342 -0
  2230. data/test/dummy/node_modules/inline-source-map/test/source-content.js +143 -0
  2231. data/test/dummy/node_modules/insert-module-globals/LICENSE +18 -0
  2232. data/test/dummy/node_modules/insert-module-globals/bench/results.txt +18 -0
  2233. data/test/dummy/node_modules/insert-module-globals/bench/run.sh +2 -0
  2234. data/test/dummy/node_modules/insert-module-globals/bin/cmd.js +26 -0
  2235. data/test/dummy/node_modules/insert-module-globals/example/files/foo/index.js +6 -0
  2236. data/test/dummy/node_modules/insert-module-globals/example/files/main.js +6 -0
  2237. data/test/dummy/node_modules/insert-module-globals/example/insert.js +12 -0
  2238. data/test/dummy/node_modules/insert-module-globals/index.js +170 -0
  2239. data/test/dummy/node_modules/insert-module-globals/package.json +108 -0
  2240. data/test/dummy/node_modules/insert-module-globals/readme.markdown +146 -0
  2241. data/test/dummy/node_modules/insert-module-globals/test/always/custom_globals_without_defaults.js +7 -0
  2242. data/test/dummy/node_modules/insert-module-globals/test/always/hidden_from_quick_test.js +1 -0
  2243. data/test/dummy/node_modules/insert-module-globals/test/always/main.js +10 -0
  2244. data/test/dummy/node_modules/insert-module-globals/test/always.js +105 -0
  2245. data/test/dummy/node_modules/insert-module-globals/test/global/filename.js +2 -0
  2246. data/test/dummy/node_modules/insert-module-globals/test/global/main.js +2 -0
  2247. data/test/dummy/node_modules/insert-module-globals/test/global.js +63 -0
  2248. data/test/dummy/node_modules/insert-module-globals/test/insert/buffer.js +1 -0
  2249. data/test/dummy/node_modules/insert-module-globals/test/insert/foo/buf.js +4 -0
  2250. data/test/dummy/node_modules/insert-module-globals/test/insert/foo/index.js +4 -0
  2251. data/test/dummy/node_modules/insert-module-globals/test/insert/main.js +4 -0
  2252. data/test/dummy/node_modules/insert-module-globals/test/insert.js +46 -0
  2253. data/test/dummy/node_modules/insert-module-globals/test/isbuffer/main.js +3 -0
  2254. data/test/dummy/node_modules/insert-module-globals/test/isbuffer.js +27 -0
  2255. data/test/dummy/node_modules/insert-module-globals/test/return/foo/index.js +4 -0
  2256. data/test/dummy/node_modules/insert-module-globals/test/return/main.js +6 -0
  2257. data/test/dummy/node_modules/insert-module-globals/test/return.js +27 -0
  2258. data/test/dummy/node_modules/insert-module-globals/test/sourcemap/main.js +3 -0
  2259. data/test/dummy/node_modules/insert-module-globals/test/sourcemap/main_es6.js +1 -0
  2260. data/test/dummy/node_modules/insert-module-globals/test/sourcemap.js +40 -0
  2261. data/test/dummy/node_modules/insert-module-globals/test/unprefix/hello.js +2 -0
  2262. data/test/dummy/node_modules/insert-module-globals/test/unprefix/main.js +3 -0
  2263. data/test/dummy/node_modules/insert-module-globals/test/unprefix.js +33 -0
  2264. data/test/dummy/node_modules/is-binary-path/index.js +12 -0
  2265. data/test/dummy/node_modules/is-binary-path/license +21 -0
  2266. data/test/dummy/node_modules/is-binary-path/package.json +102 -0
  2267. data/test/dummy/node_modules/is-binary-path/readme.md +34 -0
  2268. data/test/dummy/node_modules/is-buffer/LICENSE +21 -0
  2269. data/test/dummy/node_modules/is-buffer/README.md +49 -0
  2270. data/test/dummy/node_modules/is-buffer/index.js +17 -0
  2271. data/test/dummy/node_modules/is-buffer/package.json +108 -0
  2272. data/test/dummy/node_modules/is-buffer/test/basic.js +20 -0
  2273. data/test/dummy/node_modules/is-dotfile/LICENSE +21 -0
  2274. data/test/dummy/node_modules/is-dotfile/README.md +74 -0
  2275. data/test/dummy/node_modules/is-dotfile/index.js +15 -0
  2276. data/test/dummy/node_modules/is-dotfile/package.json +108 -0
  2277. data/test/dummy/node_modules/is-equal-shallow/LICENSE +21 -0
  2278. data/test/dummy/node_modules/is-equal-shallow/README.md +90 -0
  2279. data/test/dummy/node_modules/is-equal-shallow/index.js +27 -0
  2280. data/test/dummy/node_modules/is-equal-shallow/package.json +112 -0
  2281. data/test/dummy/node_modules/is-extendable/LICENSE +21 -0
  2282. data/test/dummy/node_modules/is-extendable/README.md +72 -0
  2283. data/test/dummy/node_modules/is-extendable/index.js +13 -0
  2284. data/test/dummy/node_modules/is-extendable/package.json +106 -0
  2285. data/test/dummy/node_modules/is-extglob/LICENSE +21 -0
  2286. data/test/dummy/node_modules/is-extglob/README.md +75 -0
  2287. data/test/dummy/node_modules/is-extglob/index.js +11 -0
  2288. data/test/dummy/node_modules/is-extglob/package.json +102 -0
  2289. data/test/dummy/node_modules/is-glob/LICENSE +21 -0
  2290. data/test/dummy/node_modules/is-glob/README.md +105 -0
  2291. data/test/dummy/node_modules/is-glob/index.js +14 -0
  2292. data/test/dummy/node_modules/is-glob/package.json +119 -0
  2293. data/test/dummy/node_modules/is-number/LICENSE +21 -0
  2294. data/test/dummy/node_modules/is-number/README.md +103 -0
  2295. data/test/dummy/node_modules/is-number/index.js +19 -0
  2296. data/test/dummy/node_modules/is-number/package.json +118 -0
  2297. data/test/dummy/node_modules/is-posix-bracket/LICENSE +21 -0
  2298. data/test/dummy/node_modules/is-posix-bracket/README.md +88 -0
  2299. data/test/dummy/node_modules/is-posix-bracket/index.js +10 -0
  2300. data/test/dummy/node_modules/is-posix-bracket/package.json +123 -0
  2301. data/test/dummy/node_modules/is-primitive/LICENSE +21 -0
  2302. data/test/dummy/node_modules/is-primitive/README.md +57 -0
  2303. data/test/dummy/node_modules/is-primitive/index.js +13 -0
  2304. data/test/dummy/node_modules/is-primitive/package.json +96 -0
  2305. data/test/dummy/node_modules/isarray/README.md +54 -0
  2306. data/test/dummy/node_modules/isarray/build/build.js +209 -0
  2307. data/test/dummy/node_modules/isarray/component.json +19 -0
  2308. data/test/dummy/node_modules/isarray/index.js +3 -0
  2309. data/test/dummy/node_modules/isarray/package.json +82 -0
  2310. data/test/dummy/node_modules/isobject/LICENSE +21 -0
  2311. data/test/dummy/node_modules/isobject/README.md +81 -0
  2312. data/test/dummy/node_modules/isobject/index.js +14 -0
  2313. data/test/dummy/node_modules/isobject/package.json +108 -0
  2314. data/test/dummy/node_modules/json-stable-stringify/LICENSE +18 -0
  2315. data/test/dummy/node_modules/json-stable-stringify/example/key_cmp.js +7 -0
  2316. data/test/dummy/node_modules/json-stable-stringify/example/nested.js +3 -0
  2317. data/test/dummy/node_modules/json-stable-stringify/example/str.js +3 -0
  2318. data/test/dummy/node_modules/json-stable-stringify/example/value_cmp.js +7 -0
  2319. data/test/dummy/node_modules/json-stable-stringify/index.js +50 -0
  2320. data/test/dummy/node_modules/json-stable-stringify/package.json +95 -0
  2321. data/test/dummy/node_modules/json-stable-stringify/readme.markdown +90 -0
  2322. data/test/dummy/node_modules/json-stable-stringify/test/cmp.js +11 -0
  2323. data/test/dummy/node_modules/json-stable-stringify/test/nested.js +8 -0
  2324. data/test/dummy/node_modules/json-stable-stringify/test/str.js +8 -0
  2325. data/test/dummy/node_modules/jsonify/README.markdown +34 -0
  2326. data/test/dummy/node_modules/jsonify/index.js +2 -0
  2327. data/test/dummy/node_modules/jsonify/lib/parse.js +273 -0
  2328. data/test/dummy/node_modules/jsonify/lib/stringify.js +154 -0
  2329. data/test/dummy/node_modules/jsonify/package.json +83 -0
  2330. data/test/dummy/node_modules/jsonify/test/parse.js +16 -0
  2331. data/test/dummy/node_modules/jsonify/test/stringify.js +15 -0
  2332. data/test/dummy/node_modules/jsonparse/LICENSE +24 -0
  2333. data/test/dummy/node_modules/jsonparse/README.markdown +11 -0
  2334. data/test/dummy/node_modules/jsonparse/bench.js +26 -0
  2335. data/test/dummy/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  2336. data/test/dummy/node_modules/jsonparse/jsonparse.js +341 -0
  2337. data/test/dummy/node_modules/jsonparse/package.json +85 -0
  2338. data/test/dummy/node_modules/jsonparse/samplejson/basic.json +167 -0
  2339. data/test/dummy/node_modules/jsonparse/samplejson/basic2.json +180 -0
  2340. data/test/dummy/node_modules/jsonparse/test/boundary.js +110 -0
  2341. data/test/dummy/node_modules/jsonparse/test/offset.js +67 -0
  2342. data/test/dummy/node_modules/jsonparse/test/primitives.js +57 -0
  2343. data/test/dummy/node_modules/jsonparse/test/unvalid.js +15 -0
  2344. data/test/dummy/node_modules/jsonparse/test/utf8.js +38 -0
  2345. data/test/dummy/node_modules/kind-of/LICENSE +21 -0
  2346. data/test/dummy/node_modules/kind-of/README.md +237 -0
  2347. data/test/dummy/node_modules/kind-of/index.js +113 -0
  2348. data/test/dummy/node_modules/kind-of/package.json +127 -0
  2349. data/test/dummy/node_modules/labeled-stream-splicer/LICENSE +18 -0
  2350. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/bar.js +3 -0
  2351. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/foo.js +5 -0
  2352. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/main.js +2 -0
  2353. data/test/dummy/node_modules/labeled-stream-splicer/example/browser/xyz.js +2 -0
  2354. data/test/dummy/node_modules/labeled-stream-splicer/example/bundle.js +16 -0
  2355. data/test/dummy/node_modules/labeled-stream-splicer/index.js +65 -0
  2356. data/test/dummy/node_modules/labeled-stream-splicer/package.json +90 -0
  2357. data/test/dummy/node_modules/labeled-stream-splicer/readme.markdown +124 -0
  2358. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/bar.js +3 -0
  2359. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/foo.js +5 -0
  2360. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/main.js +2 -0
  2361. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle/xyz.js +2 -0
  2362. data/test/dummy/node_modules/labeled-stream-splicer/test/bundle.js +27 -0
  2363. data/test/dummy/node_modules/lexical-scope/LICENSE +18 -0
  2364. data/test/dummy/node_modules/lexical-scope/bench/jquery.js +4 -0
  2365. data/test/dummy/node_modules/lexical-scope/bench/results.txt +15 -0
  2366. data/test/dummy/node_modules/lexical-scope/bench/run.js +7 -0
  2367. data/test/dummy/node_modules/lexical-scope/example/detect.js +6 -0
  2368. data/test/dummy/node_modules/lexical-scope/example/src.js +27 -0
  2369. data/test/dummy/node_modules/lexical-scope/index.js +194 -0
  2370. data/test/dummy/node_modules/lexical-scope/package.json +110 -0
  2371. data/test/dummy/node_modules/lexical-scope/readme.markdown +148 -0
  2372. data/test/dummy/node_modules/lexical-scope/test/argument.js +17 -0
  2373. data/test/dummy/node_modules/lexical-scope/test/assign_implicit.js +13 -0
  2374. data/test/dummy/node_modules/lexical-scope/test/detect.js +17 -0
  2375. data/test/dummy/node_modules/lexical-scope/test/files/argument.js +6 -0
  2376. data/test/dummy/node_modules/lexical-scope/test/files/assign_implicit.js +2 -0
  2377. data/test/dummy/node_modules/lexical-scope/test/files/buffer_call.js +1 -0
  2378. data/test/dummy/node_modules/lexical-scope/test/files/buffer_isbuffer.js +1 -0
  2379. data/test/dummy/node_modules/lexical-scope/test/files/buffer_var.js +1 -0
  2380. data/test/dummy/node_modules/lexical-scope/test/files/detect.js +32 -0
  2381. data/test/dummy/node_modules/lexical-scope/test/files/labels.js +11 -0
  2382. data/test/dummy/node_modules/lexical-scope/test/files/multiple-exports.js +6 -0
  2383. data/test/dummy/node_modules/lexical-scope/test/files/named_arg.js +6 -0
  2384. data/test/dummy/node_modules/lexical-scope/test/files/obj.js +1 -0
  2385. data/test/dummy/node_modules/lexical-scope/test/files/return_hash.js +5 -0
  2386. data/test/dummy/node_modules/lexical-scope/test/files/right_hand.js +2 -0
  2387. data/test/dummy/node_modules/lexical-scope/test/files/try_catch.js +7 -0
  2388. data/test/dummy/node_modules/lexical-scope/test/labels.js +13 -0
  2389. data/test/dummy/node_modules/lexical-scope/test/multiple-exports.js +18 -0
  2390. data/test/dummy/node_modules/lexical-scope/test/named_arg.js +17 -0
  2391. data/test/dummy/node_modules/lexical-scope/test/obj.js +16 -0
  2392. data/test/dummy/node_modules/lexical-scope/test/package.json +3 -0
  2393. data/test/dummy/node_modules/lexical-scope/test/props.js +41 -0
  2394. data/test/dummy/node_modules/lexical-scope/test/return_hash.js +13 -0
  2395. data/test/dummy/node_modules/lexical-scope/test/right_hand.js +16 -0
  2396. data/test/dummy/node_modules/lexical-scope/test/shebang.js +19 -0
  2397. data/test/dummy/node_modules/lexical-scope/test/try_catch.js +13 -0
  2398. data/test/dummy/node_modules/lodash.memoize/LICENSE.txt +22 -0
  2399. data/test/dummy/node_modules/lodash.memoize/README.md +20 -0
  2400. data/test/dummy/node_modules/lodash.memoize/index.js +167 -0
  2401. data/test/dummy/node_modules/lodash.memoize/package.json +121 -0
  2402. data/test/dummy/node_modules/micromatch/LICENSE +21 -0
  2403. data/test/dummy/node_modules/micromatch/README.md +616 -0
  2404. data/test/dummy/node_modules/micromatch/index.js +428 -0
  2405. data/test/dummy/node_modules/micromatch/lib/chars.js +67 -0
  2406. data/test/dummy/node_modules/micromatch/lib/expand.js +311 -0
  2407. data/test/dummy/node_modules/micromatch/lib/glob.js +193 -0
  2408. data/test/dummy/node_modules/micromatch/lib/utils.js +144 -0
  2409. data/test/dummy/node_modules/micromatch/package.json +164 -0
  2410. data/test/dummy/node_modules/miller-rabin/README.md +26 -0
  2411. data/test/dummy/node_modules/miller-rabin/bin/miller-rabin +29 -0
  2412. data/test/dummy/node_modules/miller-rabin/lib/mr.js +113 -0
  2413. data/test/dummy/node_modules/miller-rabin/package.json +89 -0
  2414. data/test/dummy/node_modules/miller-rabin/test/api-test.js +18 -0
  2415. data/test/dummy/node_modules/minimalistic-assert/index.js +11 -0
  2416. data/test/dummy/node_modules/minimalistic-assert/package.json +70 -0
  2417. data/test/dummy/node_modules/minimalistic-assert/readme.md +4 -0
  2418. data/test/dummy/node_modules/minimatch/LICENSE +15 -0
  2419. data/test/dummy/node_modules/minimatch/README.md +216 -0
  2420. data/test/dummy/node_modules/minimatch/minimatch.js +912 -0
  2421. data/test/dummy/node_modules/minimatch/package.json +85 -0
  2422. data/test/dummy/node_modules/minimist/LICENSE +18 -0
  2423. data/test/dummy/node_modules/minimist/example/parse.js +2 -0
  2424. data/test/dummy/node_modules/minimist/index.js +236 -0
  2425. data/test/dummy/node_modules/minimist/package.json +97 -0
  2426. data/test/dummy/node_modules/minimist/readme.markdown +91 -0
  2427. data/test/dummy/node_modules/minimist/test/all_bool.js +32 -0
  2428. data/test/dummy/node_modules/minimist/test/bool.js +166 -0
  2429. data/test/dummy/node_modules/minimist/test/dash.js +31 -0
  2430. data/test/dummy/node_modules/minimist/test/default_bool.js +35 -0
  2431. data/test/dummy/node_modules/minimist/test/dotted.js +22 -0
  2432. data/test/dummy/node_modules/minimist/test/kv_short.js +16 -0
  2433. data/test/dummy/node_modules/minimist/test/long.js +31 -0
  2434. data/test/dummy/node_modules/minimist/test/num.js +36 -0
  2435. data/test/dummy/node_modules/minimist/test/parse.js +197 -0
  2436. data/test/dummy/node_modules/minimist/test/parse_modified.js +9 -0
  2437. data/test/dummy/node_modules/minimist/test/short.js +67 -0
  2438. data/test/dummy/node_modules/minimist/test/stop_early.js +15 -0
  2439. data/test/dummy/node_modules/minimist/test/unknown.js +102 -0
  2440. data/test/dummy/node_modules/minimist/test/whitespace.js +8 -0
  2441. data/test/dummy/node_modules/module-deps/LICENSE +18 -0
  2442. data/test/dummy/node_modules/module-deps/bin/cmd.js +28 -0
  2443. data/test/dummy/node_modules/module-deps/bin/usage.txt +9 -0
  2444. data/test/dummy/node_modules/module-deps/example/deps.js +6 -0
  2445. data/test/dummy/node_modules/module-deps/example/files/bar.js +3 -0
  2446. data/test/dummy/node_modules/module-deps/example/files/foo.js +5 -0
  2447. data/test/dummy/node_modules/module-deps/example/files/main.js +2 -0
  2448. data/test/dummy/node_modules/module-deps/example/files/xyz.js +2 -0
  2449. data/test/dummy/node_modules/module-deps/index.js +562 -0
  2450. data/test/dummy/node_modules/module-deps/package.json +118 -0
  2451. data/test/dummy/node_modules/module-deps/readme.markdown +239 -0
  2452. data/test/dummy/node_modules/module-deps/test/bundle.js +23 -0
  2453. data/test/dummy/node_modules/module-deps/test/cache.js +50 -0
  2454. data/test/dummy/node_modules/module-deps/test/cache_expose.js +54 -0
  2455. data/test/dummy/node_modules/module-deps/test/cache_partial.js +47 -0
  2456. data/test/dummy/node_modules/module-deps/test/cache_partial_expose.js +104 -0
  2457. data/test/dummy/node_modules/module-deps/test/cycle/bar.js +3 -0
  2458. data/test/dummy/node_modules/module-deps/test/cycle/foo.js +4 -0
  2459. data/test/dummy/node_modules/module-deps/test/cycle/main.js +4 -0
  2460. data/test/dummy/node_modules/module-deps/test/cycle.js +19 -0
  2461. data/test/dummy/node_modules/module-deps/test/deps.js +49 -0
  2462. data/test/dummy/node_modules/module-deps/test/dotdot/abc/index.js +2 -0
  2463. data/test/dummy/node_modules/module-deps/test/dotdot/index.js +1 -0
  2464. data/test/dummy/node_modules/module-deps/test/dotdot.js +20 -0
  2465. data/test/dummy/node_modules/module-deps/test/expose/bar.js +1 -0
  2466. data/test/dummy/node_modules/module-deps/test/expose/foo.js +1 -0
  2467. data/test/dummy/node_modules/module-deps/test/expose/lib/abc.js +1 -0
  2468. data/test/dummy/node_modules/module-deps/test/expose/lib/xyz.js +2 -0
  2469. data/test/dummy/node_modules/module-deps/test/expose/main.js +3 -0
  2470. data/test/dummy/node_modules/module-deps/test/expose.js +41 -0
  2471. data/test/dummy/node_modules/module-deps/test/file_cache.js +58 -0
  2472. data/test/dummy/node_modules/module-deps/test/files/bar.js +3 -0
  2473. data/test/dummy/node_modules/module-deps/test/files/extra.js +1 -0
  2474. data/test/dummy/node_modules/module-deps/test/files/filterable.js +10 -0
  2475. data/test/dummy/node_modules/module-deps/test/files/foo.js +5 -0
  2476. data/test/dummy/node_modules/module-deps/test/files/main.js +2 -0
  2477. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/one.js +1 -0
  2478. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/package.json +3 -0
  2479. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/test.js +1 -0
  2480. data/test/dummy/node_modules/module-deps/test/files/pkg_filter/two.js +1 -0
  2481. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/f.js +1 -0
  2482. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/main.js +7 -0
  2483. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/index.js +1 -0
  2484. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/node_modules/insert-ggg/index.js +8 -0
  2485. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/package.json +6 -0
  2486. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/insert-aaa/index.js +8 -0
  2487. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/insert-bbb/index.js +8 -0
  2488. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/index.js +3 -0
  2489. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/node_modules/insert-mmm/index.js +8 -0
  2490. data/test/dummy/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/package.json +6 -0
  2491. data/test/dummy/node_modules/module-deps/test/files/tr_global/main.js +1 -0
  2492. data/test/dummy/node_modules/module-deps/test/files/tr_global/package.json +5 -0
  2493. data/test/dummy/node_modules/module-deps/test/files/tr_module/f.js +1 -0
  2494. data/test/dummy/node_modules/module-deps/test/files/tr_module/index.js +8 -0
  2495. data/test/dummy/node_modules/module-deps/test/files/tr_module/main.js +8 -0
  2496. data/test/dummy/node_modules/module-deps/test/files/tr_module/package.json +5 -0
  2497. data/test/dummy/node_modules/module-deps/test/files/tr_module/xxx.js +8 -0
  2498. data/test/dummy/node_modules/module-deps/test/files/tr_no_entry/main.js +1 -0
  2499. data/test/dummy/node_modules/module-deps/test/files/tr_rel/package.json +5 -0
  2500. data/test/dummy/node_modules/module-deps/test/files/tr_rel/subdir/main.js +1 -0
  2501. data/test/dummy/node_modules/module-deps/test/files/tr_rel/xxx.js +8 -0
  2502. data/test/dummy/node_modules/module-deps/test/files/tr_sh/f.js +1 -0
  2503. data/test/dummy/node_modules/module-deps/test/files/tr_sh/main.js +7 -0
  2504. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/index.js +1 -0
  2505. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/package.json +6 -0
  2506. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/g/tr_g.js +7 -0
  2507. data/test/dummy/node_modules/module-deps/test/files/tr_sh/node_modules/m/index.js +3 -0
  2508. data/test/dummy/node_modules/module-deps/test/files/tr_sh/tr_a.js +7 -0
  2509. data/test/dummy/node_modules/module-deps/test/files/tr_sh/tr_b.js +7 -0
  2510. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/f.js +3 -0
  2511. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/main.js +3 -0
  2512. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/index.js +3 -0
  2513. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/lib/decrement.js +1 -0
  2514. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/node_modules/insert-ggg/index.js +8 -0
  2515. data/test/dummy/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/package.json +6 -0
  2516. data/test/dummy/node_modules/module-deps/test/files/unicode/bar.js +3 -0
  2517. data/test/dummy/node_modules/module-deps/test/files/unicode/foo.js +5 -0
  2518. data/test/dummy/node_modules/module-deps/test/files/unicode/main.js +2 -0
  2519. data/test/dummy/node_modules/module-deps/test/files/xyz.js +2 -0
  2520. data/test/dummy/node_modules/module-deps/test/filter.js +36 -0
  2521. data/test/dummy/node_modules/module-deps/test/ignore_missing/main.js +1 -0
  2522. data/test/dummy/node_modules/module-deps/test/ignore_missing/other.js +1 -0
  2523. data/test/dummy/node_modules/module-deps/test/ignore_missing.js +60 -0
  2524. data/test/dummy/node_modules/module-deps/test/ignore_missing_cache.js +52 -0
  2525. data/test/dummy/node_modules/module-deps/test/node_modules/insert-www/index.js +8 -0
  2526. data/test/dummy/node_modules/module-deps/test/noparse.js +43 -0
  2527. data/test/dummy/node_modules/module-deps/test/noparse_row.js +39 -0
  2528. data/test/dummy/node_modules/module-deps/test/pkg/main.js +2 -0
  2529. data/test/dummy/node_modules/module-deps/test/pkg/package.json +4 -0
  2530. data/test/dummy/node_modules/module-deps/test/pkg.js +20 -0
  2531. data/test/dummy/node_modules/module-deps/test/pkg_filter.js +26 -0
  2532. data/test/dummy/node_modules/module-deps/test/row_expose.js +24 -0
  2533. data/test/dummy/node_modules/module-deps/test/row_expose_name_is_file_transform.js +32 -0
  2534. data/test/dummy/node_modules/module-deps/test/row_expose_transform.js +31 -0
  2535. data/test/dummy/node_modules/module-deps/test/source.js +61 -0
  2536. data/test/dummy/node_modules/module-deps/test/tr_2dep_module.js +23 -0
  2537. data/test/dummy/node_modules/module-deps/test/tr_err.js +21 -0
  2538. data/test/dummy/node_modules/module-deps/test/tr_fn.js +32 -0
  2539. data/test/dummy/node_modules/module-deps/test/tr_global.js +29 -0
  2540. data/test/dummy/node_modules/module-deps/test/tr_module.js +23 -0
  2541. data/test/dummy/node_modules/module-deps/test/tr_no_entry.js +31 -0
  2542. data/test/dummy/node_modules/module-deps/test/tr_opts/main.js +1 -0
  2543. data/test/dummy/node_modules/module-deps/test/tr_opts/package.json +6 -0
  2544. data/test/dummy/node_modules/module-deps/test/tr_opts.js +21 -0
  2545. data/test/dummy/node_modules/module-deps/test/tr_rel.js +24 -0
  2546. data/test/dummy/node_modules/module-deps/test/tr_sh.js +23 -0
  2547. data/test/dummy/node_modules/module-deps/test/tr_whole_package.js +22 -0
  2548. data/test/dummy/node_modules/module-deps/test/tr_write/main.js +1 -0
  2549. data/test/dummy/node_modules/module-deps/test/tr_write.js +32 -0
  2550. data/test/dummy/node_modules/module-deps/test/undef_file.js +49 -0
  2551. data/test/dummy/node_modules/module-deps/test/unicode.js +49 -0
  2552. data/test/dummy/node_modules/nan/CHANGELOG.md +396 -0
  2553. data/test/dummy/node_modules/nan/LICENSE.md +13 -0
  2554. data/test/dummy/node_modules/nan/appveyor.yml +38 -0
  2555. data/test/dummy/node_modules/nan/doc/asyncworker.md +97 -0
  2556. data/test/dummy/node_modules/nan/doc/buffers.md +54 -0
  2557. data/test/dummy/node_modules/nan/doc/callback.md +52 -0
  2558. data/test/dummy/node_modules/nan/doc/converters.md +41 -0
  2559. data/test/dummy/node_modules/nan/doc/errors.md +226 -0
  2560. data/test/dummy/node_modules/nan/doc/maybe_types.md +512 -0
  2561. data/test/dummy/node_modules/nan/doc/methods.md +656 -0
  2562. data/test/dummy/node_modules/nan/doc/new.md +147 -0
  2563. data/test/dummy/node_modules/nan/doc/node_misc.md +63 -0
  2564. data/test/dummy/node_modules/nan/doc/object_wrappers.md +263 -0
  2565. data/test/dummy/node_modules/nan/doc/persistent.md +295 -0
  2566. data/test/dummy/node_modules/nan/doc/scopes.md +73 -0
  2567. data/test/dummy/node_modules/nan/doc/script.md +38 -0
  2568. data/test/dummy/node_modules/nan/doc/string_bytes.md +62 -0
  2569. data/test/dummy/node_modules/nan/doc/v8_internals.md +199 -0
  2570. data/test/dummy/node_modules/nan/doc/v8_misc.md +85 -0
  2571. data/test/dummy/node_modules/nan/include_dirs.js +1 -0
  2572. data/test/dummy/node_modules/nan/nan.h +2237 -0
  2573. data/test/dummy/node_modules/nan/nan_callbacks.h +88 -0
  2574. data/test/dummy/node_modules/nan/nan_callbacks_12_inl.h +512 -0
  2575. data/test/dummy/node_modules/nan/nan_callbacks_pre_12_inl.h +506 -0
  2576. data/test/dummy/node_modules/nan/nan_converters.h +64 -0
  2577. data/test/dummy/node_modules/nan/nan_converters_43_inl.h +42 -0
  2578. data/test/dummy/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  2579. data/test/dummy/node_modules/nan/nan_implementation_12_inl.h +404 -0
  2580. data/test/dummy/node_modules/nan/nan_implementation_pre_12_inl.h +264 -0
  2581. data/test/dummy/node_modules/nan/nan_maybe_43_inl.h +231 -0
  2582. data/test/dummy/node_modules/nan/nan_maybe_pre_43_inl.h +303 -0
  2583. data/test/dummy/node_modules/nan/nan_new.h +340 -0
  2584. data/test/dummy/node_modules/nan/nan_object_wrap.h +155 -0
  2585. data/test/dummy/node_modules/nan/nan_persistent_12_inl.h +129 -0
  2586. data/test/dummy/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  2587. data/test/dummy/node_modules/nan/nan_string_bytes.h +305 -0
  2588. data/test/dummy/node_modules/nan/nan_typedarray_contents.h +87 -0
  2589. data/test/dummy/node_modules/nan/nan_weak.h +422 -0
  2590. data/test/dummy/node_modules/nan/package.json +121 -0
  2591. data/test/dummy/node_modules/nan/tools/1to2.js +412 -0
  2592. data/test/dummy/node_modules/nan/tools/README.md +14 -0
  2593. data/test/dummy/node_modules/nan/tools/package.json +19 -0
  2594. data/test/dummy/node_modules/normalize-path/LICENSE +21 -0
  2595. data/test/dummy/node_modules/normalize-path/README.md +75 -0
  2596. data/test/dummy/node_modules/normalize-path/index.js +17 -0
  2597. data/test/dummy/node_modules/normalize-path/package.json +118 -0
  2598. data/test/dummy/node_modules/object-keys/CHANGELOG.md +203 -0
  2599. data/test/dummy/node_modules/object-keys/LICENSE +21 -0
  2600. data/test/dummy/node_modules/object-keys/README.md +76 -0
  2601. data/test/dummy/node_modules/object-keys/index.js +128 -0
  2602. data/test/dummy/node_modules/object-keys/isArguments.js +17 -0
  2603. data/test/dummy/node_modules/object-keys/package.json +141 -0
  2604. data/test/dummy/node_modules/object-keys/test/index.js +5 -0
  2605. data/test/dummy/node_modules/object.omit/LICENSE +21 -0
  2606. data/test/dummy/node_modules/object.omit/README.md +104 -0
  2607. data/test/dummy/node_modules/object.omit/index.js +40 -0
  2608. data/test/dummy/node_modules/object.omit/package.json +105 -0
  2609. data/test/dummy/node_modules/once/LICENSE +15 -0
  2610. data/test/dummy/node_modules/once/README.md +51 -0
  2611. data/test/dummy/node_modules/once/once.js +21 -0
  2612. data/test/dummy/node_modules/once/package.json +89 -0
  2613. data/test/dummy/node_modules/os-browserify/LICENSE +21 -0
  2614. data/test/dummy/node_modules/os-browserify/README.md +2 -0
  2615. data/test/dummy/node_modules/os-browserify/browser.js +45 -0
  2616. data/test/dummy/node_modules/os-browserify/main.js +1 -0
  2617. data/test/dummy/node_modules/os-browserify/package.json +67 -0
  2618. data/test/dummy/node_modules/outpipe/LICENSE +18 -0
  2619. data/test/dummy/node_modules/outpipe/bin/echo.js +2 -0
  2620. data/test/dummy/node_modules/outpipe/example/input/x.js +4 -0
  2621. data/test/dummy/node_modules/outpipe/example/input/y.js +5 -0
  2622. data/test/dummy/node_modules/outpipe/example/input/z.js +2 -0
  2623. data/test/dummy/node_modules/outpipe/example/watch.js +19 -0
  2624. data/test/dummy/node_modules/outpipe/index.js +34 -0
  2625. data/test/dummy/node_modules/outpipe/package.json +91 -0
  2626. data/test/dummy/node_modules/outpipe/readme.markdown +117 -0
  2627. data/test/dummy/node_modules/outpipe/test/cmd.js +19 -0
  2628. data/test/dummy/node_modules/outpipe/test/outfile.js +19 -0
  2629. data/test/dummy/node_modules/pako/Gruntfile.js +82 -0
  2630. data/test/dummy/node_modules/pako/HISTORY.md +69 -0
  2631. data/test/dummy/node_modules/pako/LICENSE +21 -0
  2632. data/test/dummy/node_modules/pako/README.md +175 -0
  2633. data/test/dummy/node_modules/pako/bower.json +23 -0
  2634. data/test/dummy/node_modules/pako/dist/pako.js +6433 -0
  2635. data/test/dummy/node_modules/pako/dist/pako.min.js +3 -0
  2636. data/test/dummy/node_modules/pako/dist/pako_deflate.js +3762 -0
  2637. data/test/dummy/node_modules/pako/dist/pako_deflate.min.js +2 -0
  2638. data/test/dummy/node_modules/pako/dist/pako_inflate.js +3071 -0
  2639. data/test/dummy/node_modules/pako/dist/pako_inflate.min.js +2 -0
  2640. data/test/dummy/node_modules/pako/doc/index.html +1639 -0
  2641. data/test/dummy/node_modules/pako/index.js +14 -0
  2642. data/test/dummy/node_modules/pako/lib/deflate.js +376 -0
  2643. data/test/dummy/node_modules/pako/lib/inflate.js +400 -0
  2644. data/test/dummy/node_modules/pako/lib/utils/common.js +102 -0
  2645. data/test/dummy/node_modules/pako/lib/utils/strings.js +185 -0
  2646. data/test/dummy/node_modules/pako/lib/zlib/adler32.js +32 -0
  2647. data/test/dummy/node_modules/pako/lib/zlib/constants.js +47 -0
  2648. data/test/dummy/node_modules/pako/lib/zlib/crc32.js +41 -0
  2649. data/test/dummy/node_modules/pako/lib/zlib/deflate.js +1765 -0
  2650. data/test/dummy/node_modules/pako/lib/zlib/gzheader.js +40 -0
  2651. data/test/dummy/node_modules/pako/lib/zlib/inffast.js +326 -0
  2652. data/test/dummy/node_modules/pako/lib/zlib/inflate.js +1503 -0
  2653. data/test/dummy/node_modules/pako/lib/zlib/inftrees.js +327 -0
  2654. data/test/dummy/node_modules/pako/lib/zlib/messages.js +13 -0
  2655. data/test/dummy/node_modules/pako/lib/zlib/trees.js +1199 -0
  2656. data/test/dummy/node_modules/pako/lib/zlib/zstream.js +29 -0
  2657. data/test/dummy/node_modules/pako/package.json +101 -0
  2658. data/test/dummy/node_modules/parents/LICENSE +18 -0
  2659. data/test/dummy/node_modules/parents/example/dirname.js +3 -0
  2660. data/test/dummy/node_modules/parents/example/win32.js +5 -0
  2661. data/test/dummy/node_modules/parents/index.js +48 -0
  2662. data/test/dummy/node_modules/parents/package.json +91 -0
  2663. data/test/dummy/node_modules/parents/readme.markdown +75 -0
  2664. data/test/dummy/node_modules/parents/test/dirname.js +20 -0
  2665. data/test/dummy/node_modules/parents/test/win32.js +34 -0
  2666. data/test/dummy/node_modules/parse-asn1/README.md +8 -0
  2667. data/test/dummy/node_modules/parse-asn1/aesid.json +13 -0
  2668. data/test/dummy/node_modules/parse-asn1/asn1.js +117 -0
  2669. data/test/dummy/node_modules/parse-asn1/fixProc.js +30 -0
  2670. data/test/dummy/node_modules/parse-asn1/index.js +101 -0
  2671. data/test/dummy/node_modules/parse-asn1/package.json +97 -0
  2672. data/test/dummy/node_modules/parse-asn1/test/1024.priv +16 -0
  2673. data/test/dummy/node_modules/parse-asn1/test/1024.pub +6 -0
  2674. data/test/dummy/node_modules/parse-asn1/test/dsa.1024.priv +18 -0
  2675. data/test/dummy/node_modules/parse-asn1/test/dsa.1024.pub +12 -0
  2676. data/test/dummy/node_modules/parse-asn1/test/dsa.2048.priv +20 -0
  2677. data/test/dummy/node_modules/parse-asn1/test/dsa.2048.pub +20 -0
  2678. data/test/dummy/node_modules/parse-asn1/test/ec.pass.priv +7 -0
  2679. data/test/dummy/node_modules/parse-asn1/test/ec.priv +5 -0
  2680. data/test/dummy/node_modules/parse-asn1/test/ec.pub +4 -0
  2681. data/test/dummy/node_modules/parse-asn1/test/index.js +92 -0
  2682. data/test/dummy/node_modules/parse-asn1/test/pass.1024.priv +18 -0
  2683. data/test/dummy/node_modules/parse-asn1/test/pass.1024.pub +6 -0
  2684. data/test/dummy/node_modules/parse-asn1/test/pass.dsa.1024.priv +11 -0
  2685. data/test/dummy/node_modules/parse-asn1/test/pass.dsa.1024.pub +12 -0
  2686. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.1024.priv +18 -0
  2687. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.1024.pub +6 -0
  2688. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.2028.priv +30 -0
  2689. data/test/dummy/node_modules/parse-asn1/test/pass.rsa.2028.pub +9 -0
  2690. data/test/dummy/node_modules/parse-asn1/test/pass2.dsa.1024.priv +15 -0
  2691. data/test/dummy/node_modules/parse-asn1/test/pass2.dsa.1024.pub +12 -0
  2692. data/test/dummy/node_modules/parse-asn1/test/rsa.1024.priv +15 -0
  2693. data/test/dummy/node_modules/parse-asn1/test/rsa.1024.pub +5 -0
  2694. data/test/dummy/node_modules/parse-asn1/test/rsa.2028.priv +27 -0
  2695. data/test/dummy/node_modules/parse-asn1/test/rsa.2028.pub +8 -0
  2696. data/test/dummy/node_modules/parse-asn1/test/vector.js +7 -0
  2697. data/test/dummy/node_modules/parse-asn1/test/vector.priv +12 -0
  2698. data/test/dummy/node_modules/parse-asn1/test/vector2.priv +19 -0
  2699. data/test/dummy/node_modules/parse-glob/LICENSE +21 -0
  2700. data/test/dummy/node_modules/parse-glob/README.md +115 -0
  2701. data/test/dummy/node_modules/parse-glob/index.js +156 -0
  2702. data/test/dummy/node_modules/parse-glob/package.json +116 -0
  2703. data/test/dummy/node_modules/path-browserify/LICENSE +18 -0
  2704. data/test/dummy/node_modules/path-browserify/index.js +224 -0
  2705. data/test/dummy/node_modules/path-browserify/package.json +78 -0
  2706. data/test/dummy/node_modules/path-browserify/readme.markdown +3 -0
  2707. data/test/dummy/node_modules/path-is-absolute/index.js +20 -0
  2708. data/test/dummy/node_modules/path-is-absolute/license +21 -0
  2709. data/test/dummy/node_modules/path-is-absolute/package.json +98 -0
  2710. data/test/dummy/node_modules/path-is-absolute/readme.md +51 -0
  2711. data/test/dummy/node_modules/path-platform/LICENSE +3 -0
  2712. data/test/dummy/node_modules/path-platform/README.md +5 -0
  2713. data/test/dummy/node_modules/path-platform/package.json +79 -0
  2714. data/test/dummy/node_modules/path-platform/path.js +643 -0
  2715. data/test/dummy/node_modules/pbkdf2/LICENSE +21 -0
  2716. data/test/dummy/node_modules/pbkdf2/README.md +24 -0
  2717. data/test/dummy/node_modules/pbkdf2/async-shim.js +19 -0
  2718. data/test/dummy/node_modules/pbkdf2/browser.js +80 -0
  2719. data/test/dummy/node_modules/pbkdf2/index.js +92 -0
  2720. data/test/dummy/node_modules/pbkdf2/package.json +116 -0
  2721. data/test/dummy/node_modules/pbkdf2/test/fixtures.json +171 -0
  2722. data/test/dummy/node_modules/pbkdf2/test/index.html +13 -0
  2723. data/test/dummy/node_modules/pbkdf2/test/index.js +93 -0
  2724. data/test/dummy/node_modules/preserve/LICENSE +24 -0
  2725. data/test/dummy/node_modules/preserve/README.md +90 -0
  2726. data/test/dummy/node_modules/preserve/index.js +54 -0
  2727. data/test/dummy/node_modules/preserve/package.json +96 -0
  2728. data/test/dummy/node_modules/preserve/test.js +48 -0
  2729. data/test/dummy/node_modules/private/LICENSE +20 -0
  2730. data/test/dummy/node_modules/private/README.md +246 -0
  2731. data/test/dummy/node_modules/private/package.json +85 -0
  2732. data/test/dummy/node_modules/private/private.js +129 -0
  2733. data/test/dummy/node_modules/private/test/run.js +68 -0
  2734. data/test/dummy/node_modules/process/LICENSE +22 -0
  2735. data/test/dummy/node_modules/process/README.md +26 -0
  2736. data/test/dummy/node_modules/process/browser.js +91 -0
  2737. data/test/dummy/node_modules/process/index.js +2 -0
  2738. data/test/dummy/node_modules/process/package.json +87 -0
  2739. data/test/dummy/node_modules/process/test.js +66 -0
  2740. data/test/dummy/node_modules/process-nextick-args/index.js +20 -0
  2741. data/test/dummy/node_modules/process-nextick-args/license.md +19 -0
  2742. data/test/dummy/node_modules/process-nextick-args/package.json +73 -0
  2743. data/test/dummy/node_modules/process-nextick-args/readme.md +18 -0
  2744. data/test/dummy/node_modules/process-nextick-args/test.js +24 -0
  2745. data/test/dummy/node_modules/public-encrypt/browser.js +10 -0
  2746. data/test/dummy/node_modules/public-encrypt/index.js +18 -0
  2747. data/test/dummy/node_modules/public-encrypt/mgf.js +16 -0
  2748. data/test/dummy/node_modules/public-encrypt/package.json +97 -0
  2749. data/test/dummy/node_modules/public-encrypt/privateDecrypt.js +108 -0
  2750. data/test/dummy/node_modules/public-encrypt/publicEncrypt.js +95 -0
  2751. data/test/dummy/node_modules/public-encrypt/readme.md +6 -0
  2752. data/test/dummy/node_modules/public-encrypt/test/1024.priv +16 -0
  2753. data/test/dummy/node_modules/public-encrypt/test/1024.pub +6 -0
  2754. data/test/dummy/node_modules/public-encrypt/test/ec.pass.priv +7 -0
  2755. data/test/dummy/node_modules/public-encrypt/test/ec.priv +5 -0
  2756. data/test/dummy/node_modules/public-encrypt/test/ec.pub +4 -0
  2757. data/test/dummy/node_modules/public-encrypt/test/index.js +117 -0
  2758. data/test/dummy/node_modules/public-encrypt/test/nodeTests.js +51 -0
  2759. data/test/dummy/node_modules/public-encrypt/test/pass.1024.priv +18 -0
  2760. data/test/dummy/node_modules/public-encrypt/test/pass.1024.pub +6 -0
  2761. data/test/dummy/node_modules/public-encrypt/test/rsa.1024.priv +15 -0
  2762. data/test/dummy/node_modules/public-encrypt/test/rsa.1024.pub +5 -0
  2763. data/test/dummy/node_modules/public-encrypt/test/rsa.2028.priv +27 -0
  2764. data/test/dummy/node_modules/public-encrypt/test/rsa.2028.pub +8 -0
  2765. data/test/dummy/node_modules/public-encrypt/test/rsa.pass.priv +30 -0
  2766. data/test/dummy/node_modules/public-encrypt/test/rsa.pass.pub +9 -0
  2767. data/test/dummy/node_modules/public-encrypt/test/test_cert.pem +20 -0
  2768. data/test/dummy/node_modules/public-encrypt/test/test_key.pem +15 -0
  2769. data/test/dummy/node_modules/public-encrypt/test/test_rsa_privkey.pem +15 -0
  2770. data/test/dummy/node_modules/public-encrypt/test/test_rsa_privkey_encrypted.pem +18 -0
  2771. data/test/dummy/node_modules/public-encrypt/test/test_rsa_pubkey.pem +6 -0
  2772. data/test/dummy/node_modules/public-encrypt/withPublic.js +10 -0
  2773. data/test/dummy/node_modules/public-encrypt/xor.js +8 -0
  2774. data/test/dummy/node_modules/punycode/LICENSE-MIT.txt +20 -0
  2775. data/test/dummy/node_modules/punycode/README.md +176 -0
  2776. data/test/dummy/node_modules/punycode/package.json +119 -0
  2777. data/test/dummy/node_modules/punycode/punycode.js +533 -0
  2778. data/test/dummy/node_modules/querystring/History.md +20 -0
  2779. data/test/dummy/node_modules/querystring/License.md +19 -0
  2780. data/test/dummy/node_modules/querystring/Readme.md +15 -0
  2781. data/test/dummy/node_modules/querystring/decode.js +80 -0
  2782. data/test/dummy/node_modules/querystring/encode.js +64 -0
  2783. data/test/dummy/node_modules/querystring/index.js +4 -0
  2784. data/test/dummy/node_modules/querystring/package.json +122 -0
  2785. data/test/dummy/node_modules/querystring/test/common-index.js +3 -0
  2786. data/test/dummy/node_modules/querystring/test/index.js +210 -0
  2787. data/test/dummy/node_modules/querystring/test/tap-index.js +3 -0
  2788. data/test/dummy/node_modules/querystring-es3/History.md +20 -0
  2789. data/test/dummy/node_modules/querystring-es3/License.md +19 -0
  2790. data/test/dummy/node_modules/querystring-es3/Readme.md +15 -0
  2791. data/test/dummy/node_modules/querystring-es3/decode.js +84 -0
  2792. data/test/dummy/node_modules/querystring-es3/encode.js +85 -0
  2793. data/test/dummy/node_modules/querystring-es3/index.js +4 -0
  2794. data/test/dummy/node_modules/querystring-es3/package.json +124 -0
  2795. data/test/dummy/node_modules/querystring-es3/test/common-index.js +3 -0
  2796. data/test/dummy/node_modules/querystring-es3/test/index.js +210 -0
  2797. data/test/dummy/node_modules/querystring-es3/test/tap-index.js +3 -0
  2798. data/test/dummy/node_modules/randomatic/LICENSE +21 -0
  2799. data/test/dummy/node_modules/randomatic/README.md +132 -0
  2800. data/test/dummy/node_modules/randomatic/index.js +83 -0
  2801. data/test/dummy/node_modules/randomatic/package.json +108 -0
  2802. data/test/dummy/node_modules/randombytes/README.md +14 -0
  2803. data/test/dummy/node_modules/randombytes/browser.js +36 -0
  2804. data/test/dummy/node_modules/randombytes/index.js +1 -0
  2805. data/test/dummy/node_modules/randombytes/package.json +105 -0
  2806. data/test/dummy/node_modules/randombytes/test.js +56 -0
  2807. data/test/dummy/node_modules/read-only-stream/LICENSE +18 -0
  2808. data/test/dummy/node_modules/read-only-stream/example/main.js +3 -0
  2809. data/test/dummy/node_modules/read-only-stream/example/wrap.js +8 -0
  2810. data/test/dummy/node_modules/read-only-stream/index.js +30 -0
  2811. data/test/dummy/node_modules/read-only-stream/package.json +86 -0
  2812. data/test/dummy/node_modules/read-only-stream/readme.markdown +60 -0
  2813. data/test/dummy/node_modules/read-only-stream/test/error.js +15 -0
  2814. data/test/dummy/node_modules/read-only-stream/test/ro.js +22 -0
  2815. data/test/dummy/node_modules/read-only-stream/test/streams1.js +21 -0
  2816. data/test/dummy/node_modules/readable-stream/LICENSE +18 -0
  2817. data/test/dummy/node_modules/readable-stream/README.md +36 -0
  2818. data/test/dummy/node_modules/readable-stream/doc/stream.markdown +1761 -0
  2819. data/test/dummy/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  2820. data/test/dummy/node_modules/readable-stream/duplex.js +1 -0
  2821. data/test/dummy/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  2822. data/test/dummy/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  2823. data/test/dummy/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  2824. data/test/dummy/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  2825. data/test/dummy/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  2826. data/test/dummy/node_modules/readable-stream/node_modules/isarray/Makefile +6 -0
  2827. data/test/dummy/node_modules/readable-stream/node_modules/isarray/README.md +60 -0
  2828. data/test/dummy/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  2829. data/test/dummy/node_modules/readable-stream/node_modules/isarray/index.js +5 -0
  2830. data/test/dummy/node_modules/readable-stream/node_modules/isarray/package.json +96 -0
  2831. data/test/dummy/node_modules/readable-stream/node_modules/isarray/test.js +20 -0
  2832. data/test/dummy/node_modules/readable-stream/package.json +129 -0
  2833. data/test/dummy/node_modules/readable-stream/passthrough.js +1 -0
  2834. data/test/dummy/node_modules/readable-stream/readable.js +18 -0
  2835. data/test/dummy/node_modules/readable-stream/transform.js +1 -0
  2836. data/test/dummy/node_modules/readable-stream/writable.js +1 -0
  2837. data/test/dummy/node_modules/readdirp/LICENSE +18 -0
  2838. data/test/dummy/node_modules/readdirp/README.md +233 -0
  2839. data/test/dummy/node_modules/readdirp/examples/Readme.md +37 -0
  2840. data/test/dummy/node_modules/readdirp/examples/callback-api.js +10 -0
  2841. data/test/dummy/node_modules/readdirp/examples/grep.js +71 -0
  2842. data/test/dummy/node_modules/readdirp/examples/package.json +9 -0
  2843. data/test/dummy/node_modules/readdirp/examples/stream-api-pipe.js +19 -0
  2844. data/test/dummy/node_modules/readdirp/examples/stream-api.js +15 -0
  2845. data/test/dummy/node_modules/readdirp/node_modules/minimatch/LICENSE +15 -0
  2846. data/test/dummy/node_modules/readdirp/node_modules/minimatch/README.md +216 -0
  2847. data/test/dummy/node_modules/readdirp/node_modules/minimatch/browser.js +1159 -0
  2848. data/test/dummy/node_modules/readdirp/node_modules/minimatch/minimatch.js +912 -0
  2849. data/test/dummy/node_modules/readdirp/node_modules/minimatch/package.json +88 -0
  2850. data/test/dummy/node_modules/readdirp/package.json +101 -0
  2851. data/test/dummy/node_modules/readdirp/readdirp.js +288 -0
  2852. data/test/dummy/node_modules/readdirp/stream-api.js +100 -0
  2853. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_file1.ext1 +0 -0
  2854. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_file2.ext2 +0 -0
  2855. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_file3.ext3 +0 -0
  2856. data/test/dummy/node_modules/readdirp/test/bed/root_dir1/root_dir1_subdir1/root1_dir1_subdir1_file1.ext1 +0 -0
  2857. data/test/dummy/node_modules/readdirp/test/bed/root_dir2/root_dir2_file1.ext1 +0 -0
  2858. data/test/dummy/node_modules/readdirp/test/bed/root_dir2/root_dir2_file2.ext2 +0 -0
  2859. data/test/dummy/node_modules/readdirp/test/bed/root_file1.ext1 +0 -0
  2860. data/test/dummy/node_modules/readdirp/test/bed/root_file2.ext2 +0 -0
  2861. data/test/dummy/node_modules/readdirp/test/bed/root_file3.ext3 +0 -0
  2862. data/test/dummy/node_modules/readdirp/test/readdirp-stream.js +310 -0
  2863. data/test/dummy/node_modules/readdirp/test/readdirp.js +289 -0
  2864. data/test/dummy/node_modules/recast/LICENSE +20 -0
  2865. data/test/dummy/node_modules/recast/README.md +143 -0
  2866. data/test/dummy/node_modules/recast/example/add-braces +44 -0
  2867. data/test/dummy/node_modules/recast/example/generic-identity +17 -0
  2868. data/test/dummy/node_modules/recast/example/identity +8 -0
  2869. data/test/dummy/node_modules/recast/example/to-while +84 -0
  2870. data/test/dummy/node_modules/recast/lib/comments.js +351 -0
  2871. data/test/dummy/node_modules/recast/lib/fast-path.js +477 -0
  2872. data/test/dummy/node_modules/recast/lib/lines.js +878 -0
  2873. data/test/dummy/node_modules/recast/lib/mapping.js +277 -0
  2874. data/test/dummy/node_modules/recast/lib/options.js +95 -0
  2875. data/test/dummy/node_modules/recast/lib/parser.js +152 -0
  2876. data/test/dummy/node_modules/recast/lib/patcher.js +515 -0
  2877. data/test/dummy/node_modules/recast/lib/printer.js +1802 -0
  2878. data/test/dummy/node_modules/recast/lib/types.js +5 -0
  2879. data/test/dummy/node_modules/recast/lib/util.js +283 -0
  2880. data/test/dummy/node_modules/recast/main.js +99 -0
  2881. data/test/dummy/node_modules/recast/package.json +102 -0
  2882. data/test/dummy/node_modules/regex-cache/LICENSE +21 -0
  2883. data/test/dummy/node_modules/regex-cache/README.md +160 -0
  2884. data/test/dummy/node_modules/regex-cache/index.js +69 -0
  2885. data/test/dummy/node_modules/regex-cache/package.json +123 -0
  2886. data/test/dummy/node_modules/repeat-element/LICENSE +21 -0
  2887. data/test/dummy/node_modules/repeat-element/README.md +71 -0
  2888. data/test/dummy/node_modules/repeat-element/index.js +18 -0
  2889. data/test/dummy/node_modules/repeat-element/package.json +94 -0
  2890. data/test/dummy/node_modules/repeat-string/LICENSE +21 -0
  2891. data/test/dummy/node_modules/repeat-string/README.md +118 -0
  2892. data/test/dummy/node_modules/repeat-string/index.js +68 -0
  2893. data/test/dummy/node_modules/repeat-string/package.json +129 -0
  2894. data/test/dummy/node_modules/resolve/LICENSE +18 -0
  2895. data/test/dummy/node_modules/resolve/example/async.js +5 -0
  2896. data/test/dummy/node_modules/resolve/example/sync.js +3 -0
  2897. data/test/dummy/node_modules/resolve/index.js +5 -0
  2898. data/test/dummy/node_modules/resolve/lib/async.js +192 -0
  2899. data/test/dummy/node_modules/resolve/lib/caller.js +8 -0
  2900. data/test/dummy/node_modules/resolve/lib/core.js +4 -0
  2901. data/test/dummy/node_modules/resolve/lib/core.json +38 -0
  2902. data/test/dummy/node_modules/resolve/lib/node-modules-paths.js +38 -0
  2903. data/test/dummy/node_modules/resolve/lib/sync.js +81 -0
  2904. data/test/dummy/node_modules/resolve/package.json +84 -0
  2905. data/test/dummy/node_modules/resolve/readme.markdown +148 -0
  2906. data/test/dummy/node_modules/resolve/test/core.js +12 -0
  2907. data/test/dummy/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  2908. data/test/dummy/node_modules/resolve/test/dotdot/index.js +1 -0
  2909. data/test/dummy/node_modules/resolve/test/dotdot.js +29 -0
  2910. data/test/dummy/node_modules/resolve/test/faulty_basedir.js +17 -0
  2911. data/test/dummy/node_modules/resolve/test/filter.js +18 -0
  2912. data/test/dummy/node_modules/resolve/test/filter_sync.js +15 -0
  2913. data/test/dummy/node_modules/resolve/test/mock.js +142 -0
  2914. data/test/dummy/node_modules/resolve/test/mock_sync.js +68 -0
  2915. data/test/dummy/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  2916. data/test/dummy/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  2917. data/test/dummy/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  2918. data/test/dummy/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  2919. data/test/dummy/node_modules/resolve/test/module_dir.js +56 -0
  2920. data/test/dummy/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  2921. data/test/dummy/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  2922. data/test/dummy/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  2923. data/test/dummy/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  2924. data/test/dummy/node_modules/resolve/test/node_path.js +48 -0
  2925. data/test/dummy/node_modules/resolve/test/nonstring.js +9 -0
  2926. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  2927. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js +0 -0
  2928. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/deeper/ref.js +0 -0
  2929. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json +4 -0
  2930. data/test/dummy/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js +0 -0
  2931. data/test/dummy/node_modules/resolve/test/pathfilter.js +35 -0
  2932. data/test/dummy/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  2933. data/test/dummy/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  2934. data/test/dummy/node_modules/resolve/test/precedence/aaa.js +1 -0
  2935. data/test/dummy/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  2936. data/test/dummy/node_modules/resolve/test/precedence/bbb.js +1 -0
  2937. data/test/dummy/node_modules/resolve/test/precedence.js +23 -0
  2938. data/test/dummy/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js +1 -0
  2939. data/test/dummy/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  2940. data/test/dummy/node_modules/resolve/test/resolver/baz/package.json +3 -0
  2941. data/test/dummy/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  2942. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js +1 -0
  2943. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json +3 -0
  2944. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js +1 -0
  2945. data/test/dummy/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js +1 -0
  2946. data/test/dummy/node_modules/resolve/test/resolver/cup.coffee +1 -0
  2947. data/test/dummy/node_modules/resolve/test/resolver/foo.js +1 -0
  2948. data/test/dummy/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  2949. data/test/dummy/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  2950. data/test/dummy/node_modules/resolve/test/resolver/mug.coffee +0 -0
  2951. data/test/dummy/node_modules/resolve/test/resolver/mug.js +0 -0
  2952. data/test/dummy/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  2953. data/test/dummy/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  2954. data/test/dummy/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js +0 -0
  2955. data/test/dummy/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  2956. data/test/dummy/node_modules/resolve/test/resolver/without_basedir/main.js +6 -0
  2957. data/test/dummy/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js +1 -0
  2958. data/test/dummy/node_modules/resolve/test/resolver.js +281 -0
  2959. data/test/dummy/node_modules/resolve/test/resolver_sync.js +180 -0
  2960. data/test/dummy/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json +1 -0
  2961. data/test/dummy/node_modules/resolve/test/subdirs/node_modules/a/package.json +1 -0
  2962. data/test/dummy/node_modules/resolve/test/subdirs.js +13 -0
  2963. data/test/dummy/node_modules/ripemd160/CHANGELOG.md +36 -0
  2964. data/test/dummy/node_modules/ripemd160/README.md +100 -0
  2965. data/test/dummy/node_modules/ripemd160/lib/ripemd160.js +210 -0
  2966. data/test/dummy/node_modules/ripemd160/package.json +106 -0
  2967. data/test/dummy/node_modules/sha.js/LICENSE +22 -0
  2968. data/test/dummy/node_modules/sha.js/README.md +54 -0
  2969. data/test/dummy/node_modules/sha.js/bin.js +43 -0
  2970. data/test/dummy/node_modules/sha.js/hash.js +69 -0
  2971. data/test/dummy/node_modules/sha.js/hexpp.js +26 -0
  2972. data/test/dummy/node_modules/sha.js/index.js +15 -0
  2973. data/test/dummy/node_modules/sha.js/package.json +95 -0
  2974. data/test/dummy/node_modules/sha.js/sha.js +93 -0
  2975. data/test/dummy/node_modules/sha.js/sha1.js +98 -0
  2976. data/test/dummy/node_modules/sha.js/sha224.js +52 -0
  2977. data/test/dummy/node_modules/sha.js/sha256.js +134 -0
  2978. data/test/dummy/node_modules/sha.js/sha384.js +56 -0
  2979. data/test/dummy/node_modules/sha.js/sha512.js +259 -0
  2980. data/test/dummy/node_modules/sha.js/test/hash.js +86 -0
  2981. data/test/dummy/node_modules/sha.js/test/test.js +85 -0
  2982. data/test/dummy/node_modules/sha.js/test/vectors.js +76 -0
  2983. data/test/dummy/node_modules/shasum/LICENSE +22 -0
  2984. data/test/dummy/node_modules/shasum/README.md +15 -0
  2985. data/test/dummy/node_modules/shasum/browser.js +13 -0
  2986. data/test/dummy/node_modules/shasum/index.js +13 -0
  2987. data/test/dummy/node_modules/shasum/package.json +79 -0
  2988. data/test/dummy/node_modules/shasum/test/index.js +18 -0
  2989. data/test/dummy/node_modules/shell-quote/LICENSE +24 -0
  2990. data/test/dummy/node_modules/shell-quote/example/env.js +3 -0
  2991. data/test/dummy/node_modules/shell-quote/example/op.js +3 -0
  2992. data/test/dummy/node_modules/shell-quote/example/parse.js +3 -0
  2993. data/test/dummy/node_modules/shell-quote/example/quote.js +3 -0
  2994. data/test/dummy/node_modules/shell-quote/index.js +182 -0
  2995. data/test/dummy/node_modules/shell-quote/package.json +108 -0
  2996. data/test/dummy/node_modules/shell-quote/readme.markdown +128 -0
  2997. data/test/dummy/node_modules/shell-quote/test/env.js +39 -0
  2998. data/test/dummy/node_modules/shell-quote/test/env_fn.js +19 -0
  2999. data/test/dummy/node_modules/shell-quote/test/op.js +67 -0
  3000. data/test/dummy/node_modules/shell-quote/test/parse.js +23 -0
  3001. data/test/dummy/node_modules/shell-quote/test/quote.js +32 -0
  3002. data/test/dummy/node_modules/shell-quote/test/set.js +29 -0
  3003. data/test/dummy/node_modules/source-map/README.md +729 -0
  3004. data/test/dummy/node_modules/source-map/dist/source-map.debug.js +3006 -0
  3005. data/test/dummy/node_modules/source-map/dist/source-map.js +3005 -0
  3006. data/test/dummy/node_modules/source-map/dist/source-map.min.js +2 -0
  3007. data/test/dummy/node_modules/source-map/dist/source-map.min.js.map +1 -0
  3008. data/test/dummy/node_modules/source-map/lib/array-set.js +104 -0
  3009. data/test/dummy/node_modules/source-map/lib/base64-vlq.js +141 -0
  3010. data/test/dummy/node_modules/source-map/lib/base64.js +68 -0
  3011. data/test/dummy/node_modules/source-map/lib/binary-search.js +112 -0
  3012. data/test/dummy/node_modules/source-map/lib/mapping-list.js +80 -0
  3013. data/test/dummy/node_modules/source-map/lib/quick-sort.js +115 -0
  3014. data/test/dummy/node_modules/source-map/lib/source-map-consumer.js +1082 -0
  3015. data/test/dummy/node_modules/source-map/lib/source-map-generator.js +396 -0
  3016. data/test/dummy/node_modules/source-map/lib/source-node.js +408 -0
  3017. data/test/dummy/node_modules/source-map/lib/util.js +369 -0
  3018. data/test/dummy/node_modules/source-map/package.json +242 -0
  3019. data/test/dummy/node_modules/source-map/source-map.js +8 -0
  3020. data/test/dummy/node_modules/stream-browserify/LICENSE +18 -0
  3021. data/test/dummy/node_modules/stream-browserify/index.js +127 -0
  3022. data/test/dummy/node_modules/stream-browserify/package.json +110 -0
  3023. data/test/dummy/node_modules/stream-browserify/readme.markdown +25 -0
  3024. data/test/dummy/node_modules/stream-browserify/test/buf.js +32 -0
  3025. data/test/dummy/node_modules/stream-combiner2/LICENSE +22 -0
  3026. data/test/dummy/node_modules/stream-combiner2/README.md +37 -0
  3027. data/test/dummy/node_modules/stream-combiner2/index.js +68 -0
  3028. data/test/dummy/node_modules/stream-combiner2/package.json +79 -0
  3029. data/test/dummy/node_modules/stream-combiner2/test/index.js +98 -0
  3030. data/test/dummy/node_modules/stream-http/LICENSE +24 -0
  3031. data/test/dummy/node_modules/stream-http/README.md +124 -0
  3032. data/test/dummy/node_modules/stream-http/ie8-polyfill.js +168 -0
  3033. data/test/dummy/node_modules/stream-http/index.js +79 -0
  3034. data/test/dummy/node_modules/stream-http/lib/capability.js +40 -0
  3035. data/test/dummy/node_modules/stream-http/lib/request.js +278 -0
  3036. data/test/dummy/node_modules/stream-http/lib/response.js +178 -0
  3037. data/test/dummy/node_modules/stream-http/package.json +103 -0
  3038. data/test/dummy/node_modules/stream-http/test/browser/abort.js +55 -0
  3039. data/test/dummy/node_modules/stream-http/test/browser/auth.js +22 -0
  3040. data/test/dummy/node_modules/stream-http/test/browser/binary-streaming.js +71 -0
  3041. data/test/dummy/node_modules/stream-http/test/browser/binary.js +32 -0
  3042. data/test/dummy/node_modules/stream-http/test/browser/cookie.js +25 -0
  3043. data/test/dummy/node_modules/stream-http/test/browser/error.js.disabled +12 -0
  3044. data/test/dummy/node_modules/stream-http/test/browser/headers.js +75 -0
  3045. data/test/dummy/node_modules/stream-http/test/browser/lib/webworker-worker.js +20 -0
  3046. data/test/dummy/node_modules/stream-http/test/browser/package.json +5 -0
  3047. data/test/dummy/node_modules/stream-http/test/browser/post-binary.js +42 -0
  3048. data/test/dummy/node_modules/stream-http/test/browser/post-text.js +48 -0
  3049. data/test/dummy/node_modules/stream-http/test/browser/text-streaming.js +43 -0
  3050. data/test/dummy/node_modules/stream-http/test/browser/text.js +22 -0
  3051. data/test/dummy/node_modules/stream-http/test/browser/webworker.js +32 -0
  3052. data/test/dummy/node_modules/stream-http/test/node/http-browserify.js +133 -0
  3053. data/test/dummy/node_modules/stream-http/test/server/index.js +115 -0
  3054. data/test/dummy/node_modules/stream-http/test/server/static/basic.txt +19 -0
  3055. data/test/dummy/node_modules/stream-http/test/server/static/browserify.png +0 -0
  3056. data/test/dummy/node_modules/stream-http/test/server/static/test-polyfill.js +9 -0
  3057. data/test/dummy/node_modules/stream-splicer/LICENSE +18 -0
  3058. data/test/dummy/node_modules/stream-splicer/example/header.js +22 -0
  3059. data/test/dummy/node_modules/stream-splicer/index.js +196 -0
  3060. data/test/dummy/node_modules/stream-splicer/package.json +87 -0
  3061. data/test/dummy/node_modules/stream-splicer/readme.markdown +139 -0
  3062. data/test/dummy/node_modules/stream-splicer/test/combiner.js +31 -0
  3063. data/test/dummy/node_modules/stream-splicer/test/combiner_stream.js +29 -0
  3064. data/test/dummy/node_modules/stream-splicer/test/empty.js +17 -0
  3065. data/test/dummy/node_modules/stream-splicer/test/empty_no_data.js +13 -0
  3066. data/test/dummy/node_modules/stream-splicer/test/get.js +41 -0
  3067. data/test/dummy/node_modules/stream-splicer/test/multipush.js +31 -0
  3068. data/test/dummy/node_modules/stream-splicer/test/multiunshift.js +31 -0
  3069. data/test/dummy/node_modules/stream-splicer/test/nested.js +36 -0
  3070. data/test/dummy/node_modules/stream-splicer/test/nested_middle.js +42 -0
  3071. data/test/dummy/node_modules/stream-splicer/test/pop.js +46 -0
  3072. data/test/dummy/node_modules/stream-splicer/test/push.js +57 -0
  3073. data/test/dummy/node_modules/stream-splicer/test/shift.js +46 -0
  3074. data/test/dummy/node_modules/stream-splicer/test/splice.js +58 -0
  3075. data/test/dummy/node_modules/stream-splicer/test/unshift.js +46 -0
  3076. data/test/dummy/node_modules/string_decoder/LICENSE +20 -0
  3077. data/test/dummy/node_modules/string_decoder/README.md +7 -0
  3078. data/test/dummy/node_modules/string_decoder/index.js +221 -0
  3079. data/test/dummy/node_modules/string_decoder/package.json +83 -0
  3080. data/test/dummy/node_modules/subarg/LICENSE +18 -0
  3081. data/test/dummy/node_modules/subarg/example/show.js +3 -0
  3082. data/test/dummy/node_modules/subarg/index.js +35 -0
  3083. data/test/dummy/node_modules/subarg/package.json +105 -0
  3084. data/test/dummy/node_modules/subarg/readme.markdown +55 -0
  3085. data/test/dummy/node_modules/subarg/test/arg.js +31 -0
  3086. data/test/dummy/node_modules/subarg/test/recursive.js +24 -0
  3087. data/test/dummy/node_modules/syntax-error/LICENSE +18 -0
  3088. data/test/dummy/node_modules/syntax-error/example/check.js +12 -0
  3089. data/test/dummy/node_modules/syntax-error/example/src.js +9 -0
  3090. data/test/dummy/node_modules/syntax-error/index.js +59 -0
  3091. data/test/dummy/node_modules/syntax-error/node_modules/acorn/AUTHORS +43 -0
  3092. data/test/dummy/node_modules/syntax-error/node_modules/acorn/LICENSE +19 -0
  3093. data/test/dummy/node_modules/syntax-error/node_modules/acorn/README.md +396 -0
  3094. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/acorn +71 -0
  3095. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/build-acorn.js +82 -0
  3096. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/generate-identifier-regex.js +47 -0
  3097. data/test/dummy/node_modules/syntax-error/node_modules/acorn/bin/update_authors.sh +6 -0
  3098. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/acorn.js +3340 -0
  3099. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/acorn_loose.js +1300 -0
  3100. data/test/dummy/node_modules/syntax-error/node_modules/acorn/dist/walk.js +377 -0
  3101. data/test/dummy/node_modules/syntax-error/node_modules/acorn/package.json +213 -0
  3102. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/bin/acorn.js +59 -0
  3103. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/expression.js +707 -0
  3104. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/identifier.js +90 -0
  3105. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/index.js +67 -0
  3106. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/location.js +24 -0
  3107. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/locutil.js +42 -0
  3108. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/acorn_loose.js +0 -0
  3109. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/expression.js +501 -0
  3110. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/index.js +50 -0
  3111. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/parseutil.js +1 -0
  3112. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/state.js +160 -0
  3113. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/statement.js +420 -0
  3114. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/loose/tokenize.js +108 -0
  3115. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/lval.js +215 -0
  3116. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/node.js +50 -0
  3117. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/options.js +121 -0
  3118. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/parseutil.js +102 -0
  3119. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/state.js +104 -0
  3120. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/statement.js +626 -0
  3121. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokencontext.js +109 -0
  3122. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokenize.js +682 -0
  3123. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/tokentype.js +147 -0
  3124. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/util.js +9 -0
  3125. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/walk/index.js +340 -0
  3126. data/test/dummy/node_modules/syntax-error/node_modules/acorn/src/whitespace.js +12 -0
  3127. data/test/dummy/node_modules/syntax-error/package.json +100 -0
  3128. data/test/dummy/node_modules/syntax-error/readme.markdown +87 -0
  3129. data/test/dummy/node_modules/syntax-error/test/check.js +17 -0
  3130. data/test/dummy/node_modules/syntax-error/test/html.js +16 -0
  3131. data/test/dummy/node_modules/syntax-error/test/ok.js +13 -0
  3132. data/test/dummy/node_modules/syntax-error/test/run.js +12 -0
  3133. data/test/dummy/node_modules/syntax-error/test/run2.js +12 -0
  3134. data/test/dummy/node_modules/syntax-error/test/shebang.js +13 -0
  3135. data/test/dummy/node_modules/syntax-error/test/sources/check.js +9 -0
  3136. data/test/dummy/node_modules/syntax-error/test/sources/ok.js +1 -0
  3137. data/test/dummy/node_modules/syntax-error/test/sources/run.js +1 -0
  3138. data/test/dummy/node_modules/syntax-error/test/sources/run2.js +3 -0
  3139. data/test/dummy/node_modules/syntax-error/test/sources/shebang.js +2 -0
  3140. data/test/dummy/node_modules/syntax-error/test/sources/yield.js +13 -0
  3141. data/test/dummy/node_modules/syntax-error/test/yield.js +13 -0
  3142. data/test/dummy/node_modules/through/LICENSE.APACHE2 +15 -0
  3143. data/test/dummy/node_modules/through/LICENSE.MIT +24 -0
  3144. data/test/dummy/node_modules/through/index.js +108 -0
  3145. data/test/dummy/node_modules/through/package.json +92 -0
  3146. data/test/dummy/node_modules/through/readme.markdown +64 -0
  3147. data/test/dummy/node_modules/through/test/async.js +28 -0
  3148. data/test/dummy/node_modules/through/test/auto-destroy.js +30 -0
  3149. data/test/dummy/node_modules/through/test/buffering.js +71 -0
  3150. data/test/dummy/node_modules/through/test/end.js +45 -0
  3151. data/test/dummy/node_modules/through/test/index.js +133 -0
  3152. data/test/dummy/node_modules/through2/LICENSE +39 -0
  3153. data/test/dummy/node_modules/through2/README.md +133 -0
  3154. data/test/dummy/node_modules/through2/node_modules/isarray/Makefile +6 -0
  3155. data/test/dummy/node_modules/through2/node_modules/isarray/README.md +60 -0
  3156. data/test/dummy/node_modules/through2/node_modules/isarray/component.json +19 -0
  3157. data/test/dummy/node_modules/through2/node_modules/isarray/index.js +5 -0
  3158. data/test/dummy/node_modules/through2/node_modules/isarray/package.json +96 -0
  3159. data/test/dummy/node_modules/through2/node_modules/isarray/test.js +20 -0
  3160. data/test/dummy/node_modules/through2/node_modules/readable-stream/LICENSE +18 -0
  3161. data/test/dummy/node_modules/through2/node_modules/readable-stream/README.md +36 -0
  3162. data/test/dummy/node_modules/through2/node_modules/readable-stream/doc/stream.markdown +1760 -0
  3163. data/test/dummy/node_modules/through2/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  3164. data/test/dummy/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
  3165. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  3166. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  3167. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  3168. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  3169. data/test/dummy/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  3170. data/test/dummy/node_modules/through2/node_modules/readable-stream/package.json +105 -0
  3171. data/test/dummy/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
  3172. data/test/dummy/node_modules/through2/node_modules/readable-stream/readable.js +12 -0
  3173. data/test/dummy/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
  3174. data/test/dummy/node_modules/through2/node_modules/readable-stream/writable.js +1 -0
  3175. data/test/dummy/node_modules/through2/package.json +107 -0
  3176. data/test/dummy/node_modules/through2/through2.js +96 -0
  3177. data/test/dummy/node_modules/timers-browserify/CHANGELOG.md +58 -0
  3178. data/test/dummy/node_modules/timers-browserify/LICENSE.md +46 -0
  3179. data/test/dummy/node_modules/timers-browserify/README.md +40 -0
  3180. data/test/dummy/node_modules/timers-browserify/example/enroll/build.sh +3 -0
  3181. data/test/dummy/node_modules/timers-browserify/example/enroll/index.html +8 -0
  3182. data/test/dummy/node_modules/timers-browserify/example/enroll/js/browserify.js +233 -0
  3183. data/test/dummy/node_modules/timers-browserify/example/enroll/js/main.js +14 -0
  3184. data/test/dummy/node_modules/timers-browserify/example/enroll/server.js +11 -0
  3185. data/test/dummy/node_modules/timers-browserify/main.js +76 -0
  3186. data/test/dummy/node_modules/timers-browserify/package.json +126 -0
  3187. data/test/dummy/node_modules/to-arraybuffer/LICENSE +24 -0
  3188. data/test/dummy/node_modules/to-arraybuffer/README.md +27 -0
  3189. data/test/dummy/node_modules/to-arraybuffer/index.js +27 -0
  3190. data/test/dummy/node_modules/to-arraybuffer/package.json +85 -0
  3191. data/test/dummy/node_modules/to-arraybuffer/test.js +57 -0
  3192. data/test/dummy/node_modules/tty-browserify/LICENSE +18 -0
  3193. data/test/dummy/node_modules/tty-browserify/index.js +11 -0
  3194. data/test/dummy/node_modules/tty-browserify/package.json +78 -0
  3195. data/test/dummy/node_modules/tty-browserify/readme.markdown +1 -0
  3196. data/test/dummy/node_modules/typedarray/LICENSE +35 -0
  3197. data/test/dummy/node_modules/typedarray/example/tarray.js +4 -0
  3198. data/test/dummy/node_modules/typedarray/index.js +630 -0
  3199. data/test/dummy/node_modules/typedarray/package.json +105 -0
  3200. data/test/dummy/node_modules/typedarray/readme.markdown +61 -0
  3201. data/test/dummy/node_modules/typedarray/test/server/undef_globals.js +19 -0
  3202. data/test/dummy/node_modules/typedarray/test/tarray.js +10 -0
  3203. data/test/dummy/node_modules/umd/README.md +82 -0
  3204. data/test/dummy/node_modules/umd/bin/cli.js +43 -0
  3205. data/test/dummy/node_modules/umd/index.js +78 -0
  3206. data/test/dummy/node_modules/umd/package.json +95 -0
  3207. data/test/dummy/node_modules/unreachable-branch-transform/README.md +72 -0
  3208. data/test/dummy/node_modules/unreachable-branch-transform/index.js +59 -0
  3209. data/test/dummy/node_modules/unreachable-branch-transform/package.json +94 -0
  3210. data/test/dummy/node_modules/unreachable-branch-transform/unreachableBranchTransformer.js +97 -0
  3211. data/test/dummy/node_modules/url/LICENSE +21 -0
  3212. data/test/dummy/node_modules/url/README.md +108 -0
  3213. data/test/dummy/node_modules/url/node_modules/punycode/LICENSE-MIT.txt +20 -0
  3214. data/test/dummy/node_modules/url/node_modules/punycode/README.md +176 -0
  3215. data/test/dummy/node_modules/url/node_modules/punycode/package.json +107 -0
  3216. data/test/dummy/node_modules/url/node_modules/punycode/punycode.js +530 -0
  3217. data/test/dummy/node_modules/url/package.json +80 -0
  3218. data/test/dummy/node_modules/url/test.js +1599 -0
  3219. data/test/dummy/node_modules/url/url.js +732 -0
  3220. data/test/dummy/node_modules/url/util.js +16 -0
  3221. data/test/dummy/node_modules/util/LICENSE +18 -0
  3222. data/test/dummy/node_modules/util/README.md +15 -0
  3223. data/test/dummy/node_modules/util/package.json +81 -0
  3224. data/test/dummy/node_modules/util/support/isBuffer.js +3 -0
  3225. data/test/dummy/node_modules/util/support/isBufferBrowser.js +6 -0
  3226. data/test/dummy/node_modules/util/test/browser/inspect.js +41 -0
  3227. data/test/dummy/node_modules/util/test/browser/is.js +91 -0
  3228. data/test/dummy/node_modules/util/test/node/debug.js +86 -0
  3229. data/test/dummy/node_modules/util/test/node/format.js +77 -0
  3230. data/test/dummy/node_modules/util/test/node/inspect.js +195 -0
  3231. data/test/dummy/node_modules/util/test/node/log.js +58 -0
  3232. data/test/dummy/node_modules/util/test/node/util.js +83 -0
  3233. data/test/dummy/node_modules/util/util.js +586 -0
  3234. data/test/dummy/node_modules/util-deprecate/History.md +16 -0
  3235. data/test/dummy/node_modules/util-deprecate/LICENSE +24 -0
  3236. data/test/dummy/node_modules/util-deprecate/README.md +53 -0
  3237. data/test/dummy/node_modules/util-deprecate/browser.js +67 -0
  3238. data/test/dummy/node_modules/util-deprecate/node.js +6 -0
  3239. data/test/dummy/node_modules/util-deprecate/package.json +83 -0
  3240. data/test/dummy/node_modules/vm-browserify/LICENSE +18 -0
  3241. data/test/dummy/node_modules/vm-browserify/example/run/bundle.js +473 -0
  3242. data/test/dummy/node_modules/vm-browserify/example/run/entry.js +6 -0
  3243. data/test/dummy/node_modules/vm-browserify/example/run/index.html +9 -0
  3244. data/test/dummy/node_modules/vm-browserify/example/run/server.js +6 -0
  3245. data/test/dummy/node_modules/vm-browserify/index.js +138 -0
  3246. data/test/dummy/node_modules/vm-browserify/package.json +96 -0
  3247. data/test/dummy/node_modules/vm-browserify/readme.markdown +67 -0
  3248. data/test/dummy/node_modules/vm-browserify/test/vm.js +35 -0
  3249. data/test/dummy/node_modules/watchify/LICENSE +18 -0
  3250. data/test/dummy/node_modules/watchify/bin/args.js +16 -0
  3251. data/test/dummy/node_modules/watchify/bin/cmd.js +68 -0
  3252. data/test/dummy/node_modules/watchify/example/files/main.js +2 -0
  3253. data/test/dummy/node_modules/watchify/example/files/one.js +3 -0
  3254. data/test/dummy/node_modules/watchify/example/files/two.js +1 -0
  3255. data/test/dummy/node_modules/watchify/index.js +165 -0
  3256. data/test/dummy/node_modules/watchify/package.json +111 -0
  3257. data/test/dummy/node_modules/watchify/readme.markdown +226 -0
  3258. data/test/dummy/node_modules/watchify/test/api.js +44 -0
  3259. data/test/dummy/node_modules/watchify/test/api_brfs.js +53 -0
  3260. data/test/dummy/node_modules/watchify/test/api_ignore_watch.js +60 -0
  3261. data/test/dummy/node_modules/watchify/test/api_ignore_watch_default.js +60 -0
  3262. data/test/dummy/node_modules/watchify/test/api_ignore_watch_multiple.js +60 -0
  3263. data/test/dummy/node_modules/watchify/test/api_implicit_cache.js +44 -0
  3264. data/test/dummy/node_modules/watchify/test/bin.js +52 -0
  3265. data/test/dummy/node_modules/watchify/test/bin_brfs.js +62 -0
  3266. data/test/dummy/node_modules/watchify/test/bin_ignore_watch.js +71 -0
  3267. data/test/dummy/node_modules/watchify/test/bin_ignore_watch_default.js +71 -0
  3268. data/test/dummy/node_modules/watchify/test/bin_ignore_watch_multiple.js +72 -0
  3269. data/test/dummy/node_modules/watchify/test/bin_pipe.js +56 -0
  3270. data/test/dummy/node_modules/watchify/test/bin_plugins_pipelining_multiple_errors.js +56 -0
  3271. data/test/dummy/node_modules/watchify/test/bin_standalone.js +52 -0
  3272. data/test/dummy/node_modules/watchify/test/errors.js +56 -0
  3273. data/test/dummy/node_modules/watchify/test/errors_transform.js +83 -0
  3274. data/test/dummy/node_modules/watchify/test/expose.js +72 -0
  3275. data/test/dummy/node_modules/watchify/test/many.js +101 -0
  3276. data/test/dummy/node_modules/watchify/test/many_immediate.js +99 -0
  3277. data/test/dummy/node_modules/watchify/test/zzz.js +10 -0
  3278. data/test/dummy/node_modules/wrappy/LICENSE +15 -0
  3279. data/test/dummy/node_modules/wrappy/README.md +36 -0
  3280. data/test/dummy/node_modules/wrappy/package.json +78 -0
  3281. data/test/dummy/node_modules/wrappy/test/basic.js +51 -0
  3282. data/test/dummy/node_modules/wrappy/wrappy.js +33 -0
  3283. data/test/dummy/node_modules/xtend/LICENCE +19 -0
  3284. data/test/dummy/node_modules/xtend/Makefile +4 -0
  3285. data/test/dummy/node_modules/xtend/README.md +32 -0
  3286. data/test/dummy/node_modules/xtend/immutable.js +19 -0
  3287. data/test/dummy/node_modules/xtend/mutable.js +17 -0
  3288. data/test/dummy/node_modules/xtend/package.json +115 -0
  3289. data/test/dummy/node_modules/xtend/test.js +83 -0
  3290. data/test/dummy/package.json +16 -0
  3291. data/test/dummy/public/404.html +67 -0
  3292. data/test/dummy/public/422.html +67 -0
  3293. data/test/dummy/public/500.html +66 -0
  3294. data/test/dummy/public/favicon.ico +0 -0
  3295. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-o/-oGwsmoED7FhsnbNDNwcTTteQvlbz-1VlFE5r5SckBA.cache +1 -0
  3296. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xzgg23D0Fjd2URLPZsw-cz0moJJ_UTK91raBLnaTms.cache +0 -0
  3297. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0T/0T1MHI5D1uU0usyPDGnBbeYxhVQNi7xcOm_dcpVdDz0.cache +1 -0
  3298. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1C/1CTNbWEzOEeKLAM04HKSC0frL8DB--8V-u1Z1dwubis.cache +2 -0
  3299. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1G/1GMeThvFGAPkgFRVLS0A0aCcYeUjeQ812CErmw29lhc.cache +1 -0
  3300. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1W/1W_jC2izQTZB80Jz9cqI-ZA8Q5404rKo0rDiXT6pyr0.cache +1 -0
  3301. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1y/1yWAWPbnk7v_KFEcnQXR24rexLnBN3TKJmcHz9cUgtE.cache +0 -0
  3302. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1y/1ytTRlj_doPKSf37QpkQoaBPnCjViBRjQzn-K33N0RE.cache +1 -0
  3303. data/test/dummy/tmp/cache/assets/sprockets/v3.0/28/28AQEUK_z51aMqaQktotLgk1EJl_J0osXkBQG8nv734.cache +1 -0
  3304. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2F/2FXAncroIYCxLSOYXSLp-mhRrd92wPdqrAAajO_muW4.cache +1 -0
  3305. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2M/2M70sHX7UHiSdlFV1IwsyvgpkNutcGgqb8xSspO2Xwg.cache +0 -0
  3306. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2U/2UdeWj23mfTMDgZN83Pxds4ZJjkVyby2tEyidUxlcpg.cache +0 -0
  3307. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2q/2qTH4ROw7lpwRUwiQBnu9WRdMbgiDHkWr5QGBS4MZBE.cache +1 -0
  3308. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3f/3fIP3rRWCmy8nku15janoFvYjpSH-gxQh2kr0wJRfcU.cache +1 -0
  3309. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3h/3hNMHCANib7hGcZimVtw9fqlKba7j4zP91_IEFEUdno.cache +2 -0
  3310. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4I/4IHPxfLLqnhY36gdRmtSFkWYiawbn4uMxNPLP3xnQe8.cache +1 -0
  3311. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4e/4eTw2V8GjmBr-1wvLE9Zzh3XFtQI5hDMD9qX5QALOBY.cache +1 -0
  3312. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4o/4ombhIKJPpLS3j9K3oY7hKJ49pw_71dxQ8LgJNNgIFQ.cache +1 -0
  3313. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  3314. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5le4DculpQJ2ycky3PMljl8ShEfd6Mx3OsZ6vZsgIto.cache +0 -0
  3315. data/test/dummy/tmp/cache/assets/sprockets/v3.0/62/62Kg2wvzJXu-q0ymvrItPrB9Q--CLLAC6SEjd6g74lc.cache +1 -0
  3316. data/test/dummy/tmp/cache/assets/sprockets/v3.0/67/677WI5Mqbdg3dwlTwugSiYu8x3M4mHBlgLKvsHP2Z7I.cache +0 -0
  3317. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6A/6AbdujJ_7IBtGrNb7o4tRAD4XhW7AUddARigLQlBaQw.cache +1 -0
  3318. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6Q/6Q-4g6-L2KWSZ3bmx0tggt1KhIwmZxHeJrchrwYg4AQ.cache +1 -0
  3319. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6v/6vZuEXThthctuw4_MrmwizfH1STATSfPDpm-h1hDHwM.cache +0 -0
  3320. data/test/dummy/tmp/cache/assets/sprockets/v3.0/70/707QxGBmtwkz0ax6G2zWTSk5KNbpkAuS5q-Jb9RC4aU.cache +1 -0
  3321. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7H/7HRIgBLpey9TZ4qe9CY89lER8HNhVB0cjlz5eZdu9CQ.cache +1 -0
  3322. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8J/8J0eNW8CIrQoMKXG9-CGEXyRUn6Gbre-KBS_kAIvS-U.cache +1 -0
  3323. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8N/8Nv07i91aaxvqlxXISKaZoBqHvcLCJBF8NUwd2VTdJk.cache +1 -0
  3324. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B2/B2qFoFRh8kpMTC8gkv5N13NHJ3L9NV-0_vl3sC5-x_w.cache +1 -0
  3325. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BC/BCdR-E9OXnj9lwDHAlKUFySrv7YOFy_-_xXG1pOLUQ8.cache +0 -0
  3326. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BM/BMvp0d8hNLlz9IB2axdS80D7Di4-gaTIVN3mpKWdNQw.cache +1 -0
  3327. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BR/BRII8jYm88YaY_j67VxirVrD6yvF28TVkZbtMUhLGCg.cache +3 -0
  3328. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BZ/BZNOigM6frhiGdxZuB2w2S6E4OZMui6dyQyHG6lvrsY.cache +0 -0
  3329. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bf/BfVd0Db3otlRlNy91JxVcKkQWwyHrO5e4KiMva5Fle8.cache +0 -0
  3330. data/test/dummy/tmp/cache/assets/sprockets/v3.0/C4/C4yiibIGgaeZAVb7MUEIZ7ReUuxiVhpaz3fjUixKPZ4.cache +0 -0
  3331. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CY/CYrZBmHdeD3suhCFCPZQ4mcIyLXhwZ_RjaO18hqt8RA.cache +1 -0
  3332. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cc/CcbURITLxEFw-Hj0MeKBtseGpehBoxrGuZsVC2aqvsI.cache +1 -0
  3333. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cg/CgCEnHXAmzJdqvpprhFloxCMIpf3GIbHBw8x7AP5QmA.cache +1 -0
  3334. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ch/Ch2bQFHkYziI9Erdkuj8uoPJyw0W2aA5prtYAqlccww.cache +1 -0
  3335. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +0 -0
  3336. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dd/Dd5SNmaitiYv1i85eR4fMMn8U4eDZW8dLAdjlUoveVk.cache +1 -0
  3337. data/test/dummy/tmp/cache/assets/sprockets/v3.0/E3/E3PGV-EHbdgytztS6aIodaUxIjBKEozvhb7OWpyTHj0.cache +0 -0
  3338. data/test/dummy/tmp/cache/assets/sprockets/v3.0/E4/E4Qr2ISm83HFsIQnBi32nNUnOha1zu8GzgRdsENtN-E.cache +0 -0
  3339. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ED/EDMmqav5qwaX53k7p9wJnePjeZ7b_i5xHMAx8E2XoCU.cache +0 -0
  3340. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ED/ed-CxD158cujF_2SfTt-qNG6mXxO-lg5Bz8R3S4i3CM.cache +0 -0
  3341. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EE/EEC4W-d67sYYaXRuN_CPOlQPcQZh0lRDZ8v0eZ2HB5k.cache +1 -0
  3342. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ei/Ei9RwfAHDDbaTDnFp5UR9Wx3IaBLhEsJdAvcbxkuaMA.cache +2 -0
  3343. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/Erm-aKaNgB0tcsTKg0KvSuQoWAWxPBS36qtg8MwhLcQ.cache +0 -0
  3344. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/eR2wQCBaaOa9Bd18JSY0d7SaptjuAm7rC_GHxMvBR38.cache +0 -0
  3345. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FB/FBJvMbKJWr4fqIEI--QPdkwiP9cGgxCOcYuAAF0WlDM.cache +0 -0
  3346. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FH/FHsrfVlSPP0eySEDeUHcCzH7jK3zJy95BS7BXdMazuQ.cache +1 -0
  3347. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FX/FX-5pUWfGgoJd2h4XnifVCYWwG5jmENGfUV1cNMnQlQ.cache +1 -0
  3348. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G1/G1LupDraM99hvtHYG7WE3Yx3Dq4soCOCjrYateZ5rkw.cache +1 -0
  3349. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G3/G3IyzwSTT-PDJgNJQlycSbleR64OEGNaWCjEu94Mge4.cache +1 -0
  3350. data/test/dummy/tmp/cache/assets/sprockets/v3.0/GO/GOGZJvK3DfVJrEpCxhQ8JKUqdX5MwyfUeXTghwiqgd4.cache +2 -0
  3351. data/test/dummy/tmp/cache/assets/sprockets/v3.0/GR/GRl6HEX8FOaFQe4f85N5-eyzvpMZyzDm38oAi2PAftw.cache +1 -0
  3352. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G_/G_xzVJE17FIAM5r-Z3Jm7ijeKBX6sxzivkxGN8WUaFE.cache +0 -0
  3353. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gp/GpwGZSYjuSCgh4VO8ZK1IqUsPj1xZfEaDEARe4yKJYs.cache +1 -0
  3354. data/test/dummy/tmp/cache/assets/sprockets/v3.0/H0/H0aw7dFi66LCe_sp6w6n2QLOeVk8YjkOADP2YoQ-RGw.cache +0 -0
  3355. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ii/Ii27XzcU3aygpprdhW83NjUzo1TTEoptuqipf5m3nj0.cache +0 -0
  3356. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JD/JDFa4nA6PyC0HzQ0m8DCZoLc_jA255lfwRhMVWeKSpc.cache +1 -0
  3357. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JN/JNWCNiollNBbP6M-3ahd4oqOZVJ6ASPH30lju91Ab9E.cache +0 -0
  3358. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JN/jNOmcfOJ3Aajda3krgNu-QaFM6roZYLoE6CVQT1Elm4.cache +0 -0
  3359. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K3/K32DeLXUd7pGb8zNsSm-Q1t87CldA2zm05hDPD35CCg.cache +1 -0
  3360. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K9/K9ZheMi0hi4DNLzmDMRnv9A_lOVz33kNImc16Now42o.cache +1 -0
  3361. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KO/KOegh_TQB4Tzdd3v-xqH93vGa3V74zHzwV4AVWb29t8.cache +1 -0
  3362. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kg/Kg-x5n8i2vJFjIlJjJOlCm4Q25v-4Od0h1YEdUhdGrw.cache +3 -0
  3363. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kr/KrkjbBFE0mqAZzcgFLIp0xZfLvyp0S33jjbAgImdEbA.cache +1 -0
  3364. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kr/krW6duuEvorLAsp1iSId4S6rAWNliU5R0SCgyWA6Hlg.cache +1 -0
  3365. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LR/LRl-827CKV2LMeOgp-1cCdNPsuTQeqY2d4zIcmaTbgc.cache +1 -0
  3366. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lg/Lgy-n6ZX0Jrs2S9jQvGXOcIkhg1wIQvADBBl7nt4IUM.cache +1 -0
  3367. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Md/Md4DjPjZ5AsWma7rKT6g_5PwT6KNvjqCI83wyWdivAY.cache +1 -0
  3368. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mn/MnjTyMnZ8hq48sK3kqeEV5HntHOzj5l9byZntXcymv0.cache +0 -0
  3369. data/test/dummy/tmp/cache/assets/sprockets/v3.0/My/My-gJn8h5jXtY1Apc8MKm2-HQyJ9bYzPVA2SsYFMlk4.cache +2 -0
  3370. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NK/NKF9odlZM3nINhAjq9aZ9t_Gaya8a0NAV7Lf9BLUWOI.cache +1 -0
  3371. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NV/NVTgol3wufMoq9DekcTmOC0kAlRjJEVjMje8Ad9TzKs.cache +0 -0
  3372. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NZ/NZWHq8mjbWIQjWtIS5ssE8XxECO0WWbxy77K_f71yJ0.cache +0 -0
  3373. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nn/NnUCa7jNYx9HCmEB7E7WPWT00DwaM4IYICy1Ju1jjcs.cache +1 -0
  3374. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OA/OApH3PYH-ibNr0BhsNDyI5GMepjx7m6VRi-AIm-mx_U.cache +1 -0
  3375. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  3376. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Or/Ori7DoN_oUPJhv5ILW1Df8hnTZ16MmxZ5lauVX5QGBQ.cache +3 -0
  3377. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P-/P-jLPpVIFLWWoJ1LwGDV0h1kE0-fMYmRBMX1JWNxsj0.cache +1 -0
  3378. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PV/PVtQYPUcj0hhzP900u1AdXBY7CneDNs1j_LFaSMbDf8.cache +1 -0
  3379. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PZ/PZobPcXCbpM9MJ8WnUyBrnPWkCTMPJuEKlePnEXm0v0.cache +3 -0
  3380. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pb/PbP8T5HsLnpAYmWRIsHnOuel85RJ5dAapBz1E7wyFPQ.cache +1 -0
  3381. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Py/PyAATStNO87RSWlrulPb8bkE1ZyCV2Klj8dsF3Lj-qw.cache +1 -0
  3382. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q6/Q63H6CMNHL_FTlto__Gx5ui5qR6LeEuMgri6tH46MxU.cache +0 -0
  3383. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QC/QCSYs1T2oBVcQgCi-uHpbQV4djrEXrWXJqlbrAsJ0U8.cache +1 -0
  3384. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QF/QFqhjGMviIEKNIXi5XNCW7bjzsQyZj-eC3aQXs86gAw.cache +0 -0
  3385. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QQ/QQiJnGn6sN0rLBn5t9fYVpx2vyEuz7zyyaw7VNeD9VQ.cache +1 -0
  3386. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qz/Qz_mGtVrxTgxlKmsfyA9PdtIyGXD8PTNm1x4qDGFhAk.cache +1 -0
  3387. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RW/RWJlNRqVXFEKiVu2YskLVphB4BcvQc6b1TJgp7i9JqQ.cache +1 -0
  3388. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R_/R_cJA2DObH51sEin_bJSM8zoSIQPfaPcrq1slMF0TMc.cache +0 -0
  3389. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rm/RmzpcWhuAgqgWXDxHU2T0_ic-a8qNcu4Tyc2Zn7w9Xg.cache +1 -0
  3390. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ry/RylJg0JPQJXRr4twCMefa5PFOfdETIva1_3ZmUgOsEA.cache +3 -0
  3391. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sm/SmiulCacWOpHZ8xOwhiJduBGopLZ2vVY5V5m5EPcksQ.cache +1 -0
  3392. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TU/TUfbVHVTUUpiD3hYtN6S1Uw81rl7YUXSHuwh9-9PJ_8.cache +1 -0
  3393. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tp/Tpd6vyyM1vD5-9Ce-ePSh24_P4yLkUkC55bMsG5xjIQ.cache +1 -0
  3394. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tz/TzB2Z-l3FHDCsSTHhxBZcacEH2JV38DeeJDDNCXMgzg.cache +2 -0
  3395. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UA/UA-qkOf3H5oWyJsQi40wLTNgjFtFyv8U0nFDkKwkico.cache +1 -0
  3396. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UM/UMKVtYUkwZ27qFoNKuod6Y9I3rvdKhI-UERSCwSBZSI.cache +1 -0
  3397. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vj/VjaurJ8UtnIDtVWJhegY2Eohw75HQ00nl-E4hdrtDtg.cache +2 -0
  3398. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ww/WwUhCL9cc-VXW-owoqL7uGiiIxPOl3PxtZ3-VOOtHPU.cache +0 -0
  3399. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xh/XhQfyjbVraCPRWoGUpzQ67BacxPZrgdjezAVUIbZyiE.cache +0 -0
  3400. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YL/YL16HsDS7EotD-QHclLmmDdwVua5_8stL4UHL_S8Edw.cache +0 -0
  3401. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zs/Zs90wzhgMjvsuhGd93f0bARG16x5iHaN2P7Ri6gYDxI.cache +0 -0
  3402. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zv/ZvxoBbzc5ML9c2gNOUHuo_Yh_XCVDD6hdlQC4EOK08c.cache +2 -0
  3403. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_C/_CBvBsem1WftcNDXywJQTvacRKqSSCNaeLjxtMszXTw.cache +1 -0
  3404. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_T/_TWKvK8ZgHNO0wyZimjRvJujWlXeE3l_SzNv9h0ZS64.cache +1 -0
  3405. data/test/dummy/tmp/cache/assets/sprockets/v3.0/__/__gV64dNSJLa3_ku1f4nBdLvl2wdtUke7hQ-_3WZ3FA.cache +3 -0
  3406. data/test/dummy/tmp/cache/assets/sprockets/v3.0/a5/a5ifa3BpZrLxpQ1VOJ7XXyRt00NcM2r3viSERmC5TzU.cache +1 -0
  3407. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aF/aFASUWtaGG_6pgjH7mM2-0b57x1NJ5xVnuiCbkg-y4U.cache +1 -0
  3408. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ai/aicXEDbiX-HblesG9oy7Em8kya_wKzov8E6V3B5i5yE.cache +1 -0
  3409. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bH/bHfdlHn48CnO-0gvgn_2418PvVkMCtYJh9ePTAKIHW4.cache +3 -0
  3410. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bU/bU6D4LRdFumZVMG5Dh25kryxNiQ_qUMzChPQnwkR6gc.cache +1 -0
  3411. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cN/cNP8A30uBN8UbbwKzaAl_nAyT2uueRoHuqk8qSRelag.cache +0 -0
  3412. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dF/dF0Kzd__Y7Pj3kIjFV6j0_JRaAPoxftwwxMhF7mHfEM.cache +1 -0
  3413. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e0/E094nc9b8pOh-uQ_w7-aIyKNwl0I4absnCnBkjRWhCg.cache +2 -0
  3414. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e0/E0sRsnXfHcO2jE2-fAOLdcE9L9rr90hUK4NNABb9yns.cache +1 -0
  3415. data/test/dummy/tmp/cache/assets/sprockets/v3.0/e0/e0kERao1gQwBqMimluxGtYwm3ZLM0chstZnPIJa1yIg.cache +0 -0
  3416. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ey/eyCOrasesbHgtHvQ_0aH5iIM4O2SMWXWRTgOarUD2-U.cache +0 -0
  3417. data/test/dummy/tmp/cache/assets/sprockets/v3.0/f9/f9UxqJv7R-OWdlkaDwJnhUyXOZs360QA5LZofXD1k_4.cache +1 -0
  3418. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fj/fj8nNZVvl_-4vFqwHw-1R0qnYhj5Wrl8CF5xQ3XLlTM.cache +1 -0
  3419. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h1/h1n1wPuR4vmcG_LWwZw1JFFj8pB_FO8ukitYCGYaNwA.cache +1 -0
  3420. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hr/hrT3s4KsN3XGw5KK1RPU2OM3SFbQm0_3-eG-H6Rw8PQ.cache +2 -0
  3421. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hs/hsFeX5jhqtYjKoACvbKZySbi31pV34OAYeIoNkwJnmQ.cache +0 -0
  3422. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kv/kvgE_VMBnJOTjQR2lW5JaEuyi5nq4zZh5sNo91aZgKo.cache +0 -0
  3423. data/test/dummy/tmp/cache/assets/sprockets/v3.0/l5/l5Xze7AlkL4jHn8VuPP9quYDvGn6zu6icAJ4Y5JoUvk.cache +1 -0
  3424. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lq/lqZ_GbiNP9bKepOfzlixV1DjyVbLK3gJ-vpr4auIo1s.cache +0 -0
  3425. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mB/mBzbEBpyOh63AWbplaLwXqpZrEyCNukOe_mrdgrRYv8.cache +1 -0
  3426. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mP/mPAo62vdIcJqthSbWd7uu9Lhc6iw3Pj6DW4FJVW9DTg.cache +1 -0
  3427. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mz/mzTl0oStlLeu8M8mKD2Z4AFiODBhxuhhEwmvkQMjJ08.cache +1 -0
  3428. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nO/nOt4q6V1_87ssVAW-m8C69Eh94D1KUAB9Y2wzugjLiU.cache +0 -0
  3429. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ns/nskEglj51iHgLa4OP6X8J2MFTFYQYbfd_q2XtE4lEl8.cache +1 -0
  3430. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oG/oGWcd1-UwcQ_o1WhfMgPOS2LSHHJpsdM47HAzzW6C1g.cache +2 -0
  3431. data/test/dummy/tmp/cache/assets/sprockets/v3.0/oH/oH-xf1jGG4CDfcKXEYhXcVZFh0jVKrRUBi8FHBmvvt8.cache +1 -0
  3432. data/test/dummy/tmp/cache/assets/sprockets/v3.0/op/opx0JXoesV3avTZAsu7AOHd2DYaFLvCdf1JsrIV1wPA.cache +1 -0
  3433. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ox/oxjmRgM9onS8LyF5LBuUNfBKubL6B5YoDfFR0gOr28U.cache +3 -0
  3434. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pF/pFqWuHO8WYdWAvyfmTzV3s2UZ0n5iKWo4ApZkKN7edA.cache +1 -0
  3435. data/test/dummy/tmp/cache/assets/sprockets/v3.0/q5/q5pnTDF_y3yRL2BGVHTvyj0YOqoF0QVDRNiV285RCY4.cache +0 -0
  3436. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qI/qIyi5uni1Pz200-4stFdM3l8cEgrNsZWNLzXDLCl9eQ.cache +3 -0
  3437. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qb/QBkdwyB7zjwdZUj9sbBIOXVY04LbXdJlV8TBu3B-Olc.cache +1 -0
  3438. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qb/qbq8JkwipRuk5VXl0qoAAf47gVCBrrG88zqsfMlukaM.cache +0 -0
  3439. data/test/dummy/tmp/cache/assets/sprockets/v3.0/r4/r4NzIjLpPuYA_rdfKUv96ek1tSfqwCLgf1gYq7NZsEI.cache +0 -0
  3440. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rR/rR10ov9tKHLBylV4izJo6YuyoP0z5Q5NkI-Dm7VqsEY.cache +1 -0
  3441. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sB/Sb1lx6nwCyXjhouZu0dyxA_1G8Eycg7mY_Pb9oUi_0I.cache +0 -0
  3442. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sB/sBvb--C3JlNzvEBHStXpTyZbFGPXSGCYNuHgy0-ykvU.cache +1 -0
  3443. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sR/sRQIZqHpZKVOoPCOxxFzLe5f2_utSzB4s7Hfpm3dcRg.cache +1 -0
  3444. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sj/sjvi7CnvzGlBxEMhFCvIqksxGk63hjabDLz_BY9_OdA.cache +1 -0
  3445. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t4/t4fcagjEnZvr4FqbN8NWQ0fN54Xql4w68LhX5UkbsG8.cache +1 -0
  3446. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t5/t5OykmAd3cRqor0IR-ireyJfVAkxtiH5sK7xd6dNMAA.cache +1 -0
  3447. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uW/UWZGINKb14yUU5rrjm_s0cCCwrTIbkcklU3U28UZmSw.cache +1 -0
  3448. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uW/uWvI_8xvoF_n11od9qHySuJONzNnAhObsFvQpVwo-qM.cache +0 -0
  3449. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ue/ue7R-WZnj5LK5it5v8BtfFZoTuNIhLm7blvmf-rl__M.cache +0 -0
  3450. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v2/v2PGvxFKaF5jLYBgjCWTo5cXupjO4cdfal1HMK0bPU0.cache +0 -0
  3451. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vIJiFzpvwlUEdD9m1ICA8u4LqA2tFHtNSAQBWBfElTE.cache +1 -0
  3452. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vIVnpzXv-OjJZQRIxrXL3XM-KL8scQB8y1wlOCZNaXE.cache +1 -0
  3453. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vI/vidEGcw2IvnQuDUCJWa-9MG87z1zA_30L9NzzVZhPWk.cache +1 -0
  3454. data/test/dummy/tmp/cache/assets/sprockets/v3.0/va/vaoKLTYGLHne0QKH4QJZjtUSYTKWMpIT83VgVeV1_fs.cache +0 -0
  3455. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vp/vpXStc2VTFJWy6rAuA9lbTLXEz2YxqsgLtx7Kg1Qe14.cache +2 -0
  3456. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wF/wFVGkMJ0wGwAwSBHDTd22b3R6zCsvpOHXfVDdNpOSxw.cache +0 -0
  3457. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wj/wj2pEMeqS73098tu8FGXM5qWkQ3qxdrPxeOHYypions.cache +1 -0
  3458. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wq/wqi8hbHyhhjFDnZiZzzAvpzJxSj2b0wsnPLp9CTFgGc.cache +1 -0
  3459. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xI/xIG5pl58VKvsIX8ryyQh1FowgxdEAGypI0klYMiVJeo.cache +0 -0
  3460. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yG/yGgJE8XGt2975Q1fHG9TfIuWv40au3QRmVfob7P1qkU.cache +1 -0
  3461. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yO/yOeZoI5mixFBK-adbMt2isNXxjM-0iGPuMv1owgaUdI.cache +0 -0
  3462. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yS/ySNeoxoSHQZ4H0K7Bf9gQ1d20t8NIi30To1s9OL-haA.cache +1 -0
  3463. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zI/zIbGJnyvo82IdqN3qeDlUhCkOWl-pQrNMkZNIdhRlkc.cache +1 -0
  3464. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zM/zMmNV8qLYtC5Kc4wv-ahWM_JnjWAUPw6eFv37DtOtB0.cache +1 -0
  3465. data/test/dummy/tmp/cache/brwy_rails/application.bundle.js +7 -0
  3466. data/test/test_helper.rb +20 -0
  3467. metadata +6994 -0
@@ -0,0 +1,4014 @@
1
+ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.acorn = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
2
+
3
+
4
+ // The main exported interface (under `self.acorn` when in the
5
+ // browser) is a `parse` function that takes a code string and
6
+ // returns an abstract syntax tree as specified by [Mozilla parser
7
+ // API][api].
8
+ //
9
+ // [api]: https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API
10
+
11
+ "use strict";
12
+
13
+ exports.parse = parse;
14
+
15
+ // This function tries to parse a single expression at a given
16
+ // offset in a string. Useful for parsing mixed-language formats
17
+ // that embed JavaScript expressions.
18
+
19
+ exports.parseExpressionAt = parseExpressionAt;
20
+
21
+ // Acorn is organized as a tokenizer and a recursive-descent parser.
22
+ // The `tokenize` export provides an interface to the tokenizer.
23
+
24
+ exports.tokenizer = tokenizer;
25
+ exports.__esModule = true;
26
+ // Acorn is a tiny, fast JavaScript parser written in JavaScript.
27
+ //
28
+ // Acorn was written by Marijn Haverbeke, Ingvar Stepanyan, and
29
+ // various contributors and released under an MIT license.
30
+ //
31
+ // Git repositories for Acorn are available at
32
+ //
33
+ // http://marijnhaverbeke.nl/git/acorn
34
+ // https://github.com/marijnh/acorn.git
35
+ //
36
+ // Please use the [github bug tracker][ghbt] to report issues.
37
+ //
38
+ // [ghbt]: https://github.com/marijnh/acorn/issues
39
+ //
40
+ // This file defines the main parser interface. The library also comes
41
+ // with a [error-tolerant parser][dammit] and an
42
+ // [abstract syntax tree walker][walk], defined in other files.
43
+ //
44
+ // [dammit]: acorn_loose.js
45
+ // [walk]: util/walk.js
46
+
47
+ var _state = _dereq_("./state");
48
+
49
+ var Parser = _state.Parser;
50
+
51
+ var _options = _dereq_("./options");
52
+
53
+ var getOptions = _options.getOptions;
54
+
55
+ _dereq_("./parseutil");
56
+
57
+ _dereq_("./statement");
58
+
59
+ _dereq_("./lval");
60
+
61
+ _dereq_("./expression");
62
+
63
+ exports.Parser = _state.Parser;
64
+ exports.plugins = _state.plugins;
65
+ exports.defaultOptions = _options.defaultOptions;
66
+
67
+ var _location = _dereq_("./location");
68
+
69
+ exports.SourceLocation = _location.SourceLocation;
70
+ exports.getLineInfo = _location.getLineInfo;
71
+ exports.Node = _dereq_("./node").Node;
72
+
73
+ var _tokentype = _dereq_("./tokentype");
74
+
75
+ exports.TokenType = _tokentype.TokenType;
76
+ exports.tokTypes = _tokentype.types;
77
+
78
+ var _tokencontext = _dereq_("./tokencontext");
79
+
80
+ exports.TokContext = _tokencontext.TokContext;
81
+ exports.tokContexts = _tokencontext.types;
82
+
83
+ var _identifier = _dereq_("./identifier");
84
+
85
+ exports.isIdentifierChar = _identifier.isIdentifierChar;
86
+ exports.isIdentifierStart = _identifier.isIdentifierStart;
87
+ exports.Token = _dereq_("./tokenize").Token;
88
+
89
+ var _whitespace = _dereq_("./whitespace");
90
+
91
+ exports.isNewLine = _whitespace.isNewLine;
92
+ exports.lineBreak = _whitespace.lineBreak;
93
+ exports.lineBreakG = _whitespace.lineBreakG;
94
+ var version = "1.2.2";exports.version = version;
95
+
96
+ function parse(input, options) {
97
+ var p = parser(options, input);
98
+ var startPos = p.pos,
99
+ startLoc = p.options.locations && p.curPosition();
100
+ p.nextToken();
101
+ return p.parseTopLevel(p.options.program || p.startNodeAt(startPos, startLoc));
102
+ }
103
+
104
+ function parseExpressionAt(input, pos, options) {
105
+ var p = parser(options, input, pos);
106
+ p.nextToken();
107
+ return p.parseExpression();
108
+ }
109
+
110
+ function tokenizer(input, options) {
111
+ return parser(options, input);
112
+ }
113
+
114
+ function parser(options, input) {
115
+ return new Parser(getOptions(options), String(input));
116
+ }
117
+
118
+ },{"./expression":6,"./identifier":7,"./location":8,"./lval":9,"./node":10,"./options":11,"./parseutil":12,"./state":13,"./statement":14,"./tokencontext":15,"./tokenize":16,"./tokentype":17,"./whitespace":19}],2:[function(_dereq_,module,exports){
119
+ if (typeof Object.create === 'function') {
120
+ // implementation from standard node.js 'util' module
121
+ module.exports = function inherits(ctor, superCtor) {
122
+ ctor.super_ = superCtor
123
+ ctor.prototype = Object.create(superCtor.prototype, {
124
+ constructor: {
125
+ value: ctor,
126
+ enumerable: false,
127
+ writable: true,
128
+ configurable: true
129
+ }
130
+ });
131
+ };
132
+ } else {
133
+ // old school shim for old browsers
134
+ module.exports = function inherits(ctor, superCtor) {
135
+ ctor.super_ = superCtor
136
+ var TempCtor = function () {}
137
+ TempCtor.prototype = superCtor.prototype
138
+ ctor.prototype = new TempCtor()
139
+ ctor.prototype.constructor = ctor
140
+ }
141
+ }
142
+
143
+ },{}],3:[function(_dereq_,module,exports){
144
+ // shim for using process in browser
145
+
146
+ var process = module.exports = {};
147
+ var queue = [];
148
+ var draining = false;
149
+
150
+ function drainQueue() {
151
+ if (draining) {
152
+ return;
153
+ }
154
+ draining = true;
155
+ var currentQueue;
156
+ var len = queue.length;
157
+ while(len) {
158
+ currentQueue = queue;
159
+ queue = [];
160
+ var i = -1;
161
+ while (++i < len) {
162
+ currentQueue[i]();
163
+ }
164
+ len = queue.length;
165
+ }
166
+ draining = false;
167
+ }
168
+ process.nextTick = function (fun) {
169
+ queue.push(fun);
170
+ if (!draining) {
171
+ setTimeout(drainQueue, 0);
172
+ }
173
+ };
174
+
175
+ process.title = 'browser';
176
+ process.browser = true;
177
+ process.env = {};
178
+ process.argv = [];
179
+ process.version = ''; // empty string to avoid regexp issues
180
+ process.versions = {};
181
+
182
+ function noop() {}
183
+
184
+ process.on = noop;
185
+ process.addListener = noop;
186
+ process.once = noop;
187
+ process.off = noop;
188
+ process.removeListener = noop;
189
+ process.removeAllListeners = noop;
190
+ process.emit = noop;
191
+
192
+ process.binding = function (name) {
193
+ throw new Error('process.binding is not supported');
194
+ };
195
+
196
+ // TODO(shtylman)
197
+ process.cwd = function () { return '/' };
198
+ process.chdir = function (dir) {
199
+ throw new Error('process.chdir is not supported');
200
+ };
201
+ process.umask = function() { return 0; };
202
+
203
+ },{}],4:[function(_dereq_,module,exports){
204
+ module.exports = function isBuffer(arg) {
205
+ return arg && typeof arg === 'object'
206
+ && typeof arg.copy === 'function'
207
+ && typeof arg.fill === 'function'
208
+ && typeof arg.readUInt8 === 'function';
209
+ }
210
+ },{}],5:[function(_dereq_,module,exports){
211
+ (function (process,global){
212
+ // Copyright Joyent, Inc. and other Node contributors.
213
+ //
214
+ // Permission is hereby granted, free of charge, to any person obtaining a
215
+ // copy of this software and associated documentation files (the
216
+ // "Software"), to deal in the Software without restriction, including
217
+ // without limitation the rights to use, copy, modify, merge, publish,
218
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
219
+ // persons to whom the Software is furnished to do so, subject to the
220
+ // following conditions:
221
+ //
222
+ // The above copyright notice and this permission notice shall be included
223
+ // in all copies or substantial portions of the Software.
224
+ //
225
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
226
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
227
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
228
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
229
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
230
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
231
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
232
+
233
+ var formatRegExp = /%[sdj%]/g;
234
+ exports.format = function(f) {
235
+ if (!isString(f)) {
236
+ var objects = [];
237
+ for (var i = 0; i < arguments.length; i++) {
238
+ objects.push(inspect(arguments[i]));
239
+ }
240
+ return objects.join(' ');
241
+ }
242
+
243
+ var i = 1;
244
+ var args = arguments;
245
+ var len = args.length;
246
+ var str = String(f).replace(formatRegExp, function(x) {
247
+ if (x === '%%') return '%';
248
+ if (i >= len) return x;
249
+ switch (x) {
250
+ case '%s': return String(args[i++]);
251
+ case '%d': return Number(args[i++]);
252
+ case '%j':
253
+ try {
254
+ return JSON.stringify(args[i++]);
255
+ } catch (_) {
256
+ return '[Circular]';
257
+ }
258
+ default:
259
+ return x;
260
+ }
261
+ });
262
+ for (var x = args[i]; i < len; x = args[++i]) {
263
+ if (isNull(x) || !isObject(x)) {
264
+ str += ' ' + x;
265
+ } else {
266
+ str += ' ' + inspect(x);
267
+ }
268
+ }
269
+ return str;
270
+ };
271
+
272
+
273
+ // Mark that a method should not be used.
274
+ // Returns a modified function which warns once by default.
275
+ // If --no-deprecation is set, then it is a no-op.
276
+ exports.deprecate = function(fn, msg) {
277
+ // Allow for deprecating things in the process of starting up.
278
+ if (isUndefined(global.process)) {
279
+ return function() {
280
+ return exports.deprecate(fn, msg).apply(this, arguments);
281
+ };
282
+ }
283
+
284
+ if (process.noDeprecation === true) {
285
+ return fn;
286
+ }
287
+
288
+ var warned = false;
289
+ function deprecated() {
290
+ if (!warned) {
291
+ if (process.throwDeprecation) {
292
+ throw new Error(msg);
293
+ } else if (process.traceDeprecation) {
294
+ console.trace(msg);
295
+ } else {
296
+ console.error(msg);
297
+ }
298
+ warned = true;
299
+ }
300
+ return fn.apply(this, arguments);
301
+ }
302
+
303
+ return deprecated;
304
+ };
305
+
306
+
307
+ var debugs = {};
308
+ var debugEnviron;
309
+ exports.debuglog = function(set) {
310
+ if (isUndefined(debugEnviron))
311
+ debugEnviron = process.env.NODE_DEBUG || '';
312
+ set = set.toUpperCase();
313
+ if (!debugs[set]) {
314
+ if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) {
315
+ var pid = process.pid;
316
+ debugs[set] = function() {
317
+ var msg = exports.format.apply(exports, arguments);
318
+ console.error('%s %d: %s', set, pid, msg);
319
+ };
320
+ } else {
321
+ debugs[set] = function() {};
322
+ }
323
+ }
324
+ return debugs[set];
325
+ };
326
+
327
+
328
+ /**
329
+ * Echos the value of a value. Trys to print the value out
330
+ * in the best way possible given the different types.
331
+ *
332
+ * @param {Object} obj The object to print out.
333
+ * @param {Object} opts Optional options object that alters the output.
334
+ */
335
+ /* legacy: obj, showHidden, depth, colors*/
336
+ function inspect(obj, opts) {
337
+ // default options
338
+ var ctx = {
339
+ seen: [],
340
+ stylize: stylizeNoColor
341
+ };
342
+ // legacy...
343
+ if (arguments.length >= 3) ctx.depth = arguments[2];
344
+ if (arguments.length >= 4) ctx.colors = arguments[3];
345
+ if (isBoolean(opts)) {
346
+ // legacy...
347
+ ctx.showHidden = opts;
348
+ } else if (opts) {
349
+ // got an "options" object
350
+ exports._extend(ctx, opts);
351
+ }
352
+ // set default options
353
+ if (isUndefined(ctx.showHidden)) ctx.showHidden = false;
354
+ if (isUndefined(ctx.depth)) ctx.depth = 2;
355
+ if (isUndefined(ctx.colors)) ctx.colors = false;
356
+ if (isUndefined(ctx.customInspect)) ctx.customInspect = true;
357
+ if (ctx.colors) ctx.stylize = stylizeWithColor;
358
+ return formatValue(ctx, obj, ctx.depth);
359
+ }
360
+ exports.inspect = inspect;
361
+
362
+
363
+ // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
364
+ inspect.colors = {
365
+ 'bold' : [1, 22],
366
+ 'italic' : [3, 23],
367
+ 'underline' : [4, 24],
368
+ 'inverse' : [7, 27],
369
+ 'white' : [37, 39],
370
+ 'grey' : [90, 39],
371
+ 'black' : [30, 39],
372
+ 'blue' : [34, 39],
373
+ 'cyan' : [36, 39],
374
+ 'green' : [32, 39],
375
+ 'magenta' : [35, 39],
376
+ 'red' : [31, 39],
377
+ 'yellow' : [33, 39]
378
+ };
379
+
380
+ // Don't use 'blue' not visible on cmd.exe
381
+ inspect.styles = {
382
+ 'special': 'cyan',
383
+ 'number': 'yellow',
384
+ 'boolean': 'yellow',
385
+ 'undefined': 'grey',
386
+ 'null': 'bold',
387
+ 'string': 'green',
388
+ 'date': 'magenta',
389
+ // "name": intentionally not styling
390
+ 'regexp': 'red'
391
+ };
392
+
393
+
394
+ function stylizeWithColor(str, styleType) {
395
+ var style = inspect.styles[styleType];
396
+
397
+ if (style) {
398
+ return '\u001b[' + inspect.colors[style][0] + 'm' + str +
399
+ '\u001b[' + inspect.colors[style][1] + 'm';
400
+ } else {
401
+ return str;
402
+ }
403
+ }
404
+
405
+
406
+ function stylizeNoColor(str, styleType) {
407
+ return str;
408
+ }
409
+
410
+
411
+ function arrayToHash(array) {
412
+ var hash = {};
413
+
414
+ array.forEach(function(val, idx) {
415
+ hash[val] = true;
416
+ });
417
+
418
+ return hash;
419
+ }
420
+
421
+
422
+ function formatValue(ctx, value, recurseTimes) {
423
+ // Provide a hook for user-specified inspect functions.
424
+ // Check that value is an object with an inspect function on it
425
+ if (ctx.customInspect &&
426
+ value &&
427
+ isFunction(value.inspect) &&
428
+ // Filter out the util module, it's inspect function is special
429
+ value.inspect !== exports.inspect &&
430
+ // Also filter out any prototype objects using the circular check.
431
+ !(value.constructor && value.constructor.prototype === value)) {
432
+ var ret = value.inspect(recurseTimes, ctx);
433
+ if (!isString(ret)) {
434
+ ret = formatValue(ctx, ret, recurseTimes);
435
+ }
436
+ return ret;
437
+ }
438
+
439
+ // Primitive types cannot have properties
440
+ var primitive = formatPrimitive(ctx, value);
441
+ if (primitive) {
442
+ return primitive;
443
+ }
444
+
445
+ // Look up the keys of the object.
446
+ var keys = Object.keys(value);
447
+ var visibleKeys = arrayToHash(keys);
448
+
449
+ if (ctx.showHidden) {
450
+ keys = Object.getOwnPropertyNames(value);
451
+ }
452
+
453
+ // IE doesn't make error fields non-enumerable
454
+ // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx
455
+ if (isError(value)
456
+ && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {
457
+ return formatError(value);
458
+ }
459
+
460
+ // Some type of object without properties can be shortcutted.
461
+ if (keys.length === 0) {
462
+ if (isFunction(value)) {
463
+ var name = value.name ? ': ' + value.name : '';
464
+ return ctx.stylize('[Function' + name + ']', 'special');
465
+ }
466
+ if (isRegExp(value)) {
467
+ return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
468
+ }
469
+ if (isDate(value)) {
470
+ return ctx.stylize(Date.prototype.toString.call(value), 'date');
471
+ }
472
+ if (isError(value)) {
473
+ return formatError(value);
474
+ }
475
+ }
476
+
477
+ var base = '', array = false, braces = ['{', '}'];
478
+
479
+ // Make Array say that they are Array
480
+ if (isArray(value)) {
481
+ array = true;
482
+ braces = ['[', ']'];
483
+ }
484
+
485
+ // Make functions say that they are functions
486
+ if (isFunction(value)) {
487
+ var n = value.name ? ': ' + value.name : '';
488
+ base = ' [Function' + n + ']';
489
+ }
490
+
491
+ // Make RegExps say that they are RegExps
492
+ if (isRegExp(value)) {
493
+ base = ' ' + RegExp.prototype.toString.call(value);
494
+ }
495
+
496
+ // Make dates with properties first say the date
497
+ if (isDate(value)) {
498
+ base = ' ' + Date.prototype.toUTCString.call(value);
499
+ }
500
+
501
+ // Make error with message first say the error
502
+ if (isError(value)) {
503
+ base = ' ' + formatError(value);
504
+ }
505
+
506
+ if (keys.length === 0 && (!array || value.length == 0)) {
507
+ return braces[0] + base + braces[1];
508
+ }
509
+
510
+ if (recurseTimes < 0) {
511
+ if (isRegExp(value)) {
512
+ return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
513
+ } else {
514
+ return ctx.stylize('[Object]', 'special');
515
+ }
516
+ }
517
+
518
+ ctx.seen.push(value);
519
+
520
+ var output;
521
+ if (array) {
522
+ output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);
523
+ } else {
524
+ output = keys.map(function(key) {
525
+ return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);
526
+ });
527
+ }
528
+
529
+ ctx.seen.pop();
530
+
531
+ return reduceToSingleString(output, base, braces);
532
+ }
533
+
534
+
535
+ function formatPrimitive(ctx, value) {
536
+ if (isUndefined(value))
537
+ return ctx.stylize('undefined', 'undefined');
538
+ if (isString(value)) {
539
+ var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '')
540
+ .replace(/'/g, "\\'")
541
+ .replace(/\\"/g, '"') + '\'';
542
+ return ctx.stylize(simple, 'string');
543
+ }
544
+ if (isNumber(value))
545
+ return ctx.stylize('' + value, 'number');
546
+ if (isBoolean(value))
547
+ return ctx.stylize('' + value, 'boolean');
548
+ // For some reason typeof null is "object", so special case here.
549
+ if (isNull(value))
550
+ return ctx.stylize('null', 'null');
551
+ }
552
+
553
+
554
+ function formatError(value) {
555
+ return '[' + Error.prototype.toString.call(value) + ']';
556
+ }
557
+
558
+
559
+ function formatArray(ctx, value, recurseTimes, visibleKeys, keys) {
560
+ var output = [];
561
+ for (var i = 0, l = value.length; i < l; ++i) {
562
+ if (hasOwnProperty(value, String(i))) {
563
+ output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,
564
+ String(i), true));
565
+ } else {
566
+ output.push('');
567
+ }
568
+ }
569
+ keys.forEach(function(key) {
570
+ if (!key.match(/^\d+$/)) {
571
+ output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,
572
+ key, true));
573
+ }
574
+ });
575
+ return output;
576
+ }
577
+
578
+
579
+ function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {
580
+ var name, str, desc;
581
+ desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };
582
+ if (desc.get) {
583
+ if (desc.set) {
584
+ str = ctx.stylize('[Getter/Setter]', 'special');
585
+ } else {
586
+ str = ctx.stylize('[Getter]', 'special');
587
+ }
588
+ } else {
589
+ if (desc.set) {
590
+ str = ctx.stylize('[Setter]', 'special');
591
+ }
592
+ }
593
+ if (!hasOwnProperty(visibleKeys, key)) {
594
+ name = '[' + key + ']';
595
+ }
596
+ if (!str) {
597
+ if (ctx.seen.indexOf(desc.value) < 0) {
598
+ if (isNull(recurseTimes)) {
599
+ str = formatValue(ctx, desc.value, null);
600
+ } else {
601
+ str = formatValue(ctx, desc.value, recurseTimes - 1);
602
+ }
603
+ if (str.indexOf('\n') > -1) {
604
+ if (array) {
605
+ str = str.split('\n').map(function(line) {
606
+ return ' ' + line;
607
+ }).join('\n').substr(2);
608
+ } else {
609
+ str = '\n' + str.split('\n').map(function(line) {
610
+ return ' ' + line;
611
+ }).join('\n');
612
+ }
613
+ }
614
+ } else {
615
+ str = ctx.stylize('[Circular]', 'special');
616
+ }
617
+ }
618
+ if (isUndefined(name)) {
619
+ if (array && key.match(/^\d+$/)) {
620
+ return str;
621
+ }
622
+ name = JSON.stringify('' + key);
623
+ if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) {
624
+ name = name.substr(1, name.length - 2);
625
+ name = ctx.stylize(name, 'name');
626
+ } else {
627
+ name = name.replace(/'/g, "\\'")
628
+ .replace(/\\"/g, '"')
629
+ .replace(/(^"|"$)/g, "'");
630
+ name = ctx.stylize(name, 'string');
631
+ }
632
+ }
633
+
634
+ return name + ': ' + str;
635
+ }
636
+
637
+
638
+ function reduceToSingleString(output, base, braces) {
639
+ var numLinesEst = 0;
640
+ var length = output.reduce(function(prev, cur) {
641
+ numLinesEst++;
642
+ if (cur.indexOf('\n') >= 0) numLinesEst++;
643
+ return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1;
644
+ }, 0);
645
+
646
+ if (length > 60) {
647
+ return braces[0] +
648
+ (base === '' ? '' : base + '\n ') +
649
+ ' ' +
650
+ output.join(',\n ') +
651
+ ' ' +
652
+ braces[1];
653
+ }
654
+
655
+ return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
656
+ }
657
+
658
+
659
+ // NOTE: These type checking functions intentionally don't use `instanceof`
660
+ // because it is fragile and can be easily faked with `Object.create()`.
661
+ function isArray(ar) {
662
+ return Array.isArray(ar);
663
+ }
664
+ exports.isArray = isArray;
665
+
666
+ function isBoolean(arg) {
667
+ return typeof arg === 'boolean';
668
+ }
669
+ exports.isBoolean = isBoolean;
670
+
671
+ function isNull(arg) {
672
+ return arg === null;
673
+ }
674
+ exports.isNull = isNull;
675
+
676
+ function isNullOrUndefined(arg) {
677
+ return arg == null;
678
+ }
679
+ exports.isNullOrUndefined = isNullOrUndefined;
680
+
681
+ function isNumber(arg) {
682
+ return typeof arg === 'number';
683
+ }
684
+ exports.isNumber = isNumber;
685
+
686
+ function isString(arg) {
687
+ return typeof arg === 'string';
688
+ }
689
+ exports.isString = isString;
690
+
691
+ function isSymbol(arg) {
692
+ return typeof arg === 'symbol';
693
+ }
694
+ exports.isSymbol = isSymbol;
695
+
696
+ function isUndefined(arg) {
697
+ return arg === void 0;
698
+ }
699
+ exports.isUndefined = isUndefined;
700
+
701
+ function isRegExp(re) {
702
+ return isObject(re) && objectToString(re) === '[object RegExp]';
703
+ }
704
+ exports.isRegExp = isRegExp;
705
+
706
+ function isObject(arg) {
707
+ return typeof arg === 'object' && arg !== null;
708
+ }
709
+ exports.isObject = isObject;
710
+
711
+ function isDate(d) {
712
+ return isObject(d) && objectToString(d) === '[object Date]';
713
+ }
714
+ exports.isDate = isDate;
715
+
716
+ function isError(e) {
717
+ return isObject(e) &&
718
+ (objectToString(e) === '[object Error]' || e instanceof Error);
719
+ }
720
+ exports.isError = isError;
721
+
722
+ function isFunction(arg) {
723
+ return typeof arg === 'function';
724
+ }
725
+ exports.isFunction = isFunction;
726
+
727
+ function isPrimitive(arg) {
728
+ return arg === null ||
729
+ typeof arg === 'boolean' ||
730
+ typeof arg === 'number' ||
731
+ typeof arg === 'string' ||
732
+ typeof arg === 'symbol' || // ES6 symbol
733
+ typeof arg === 'undefined';
734
+ }
735
+ exports.isPrimitive = isPrimitive;
736
+
737
+ exports.isBuffer = _dereq_('./support/isBuffer');
738
+
739
+ function objectToString(o) {
740
+ return Object.prototype.toString.call(o);
741
+ }
742
+
743
+
744
+ function pad(n) {
745
+ return n < 10 ? '0' + n.toString(10) : n.toString(10);
746
+ }
747
+
748
+
749
+ var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',
750
+ 'Oct', 'Nov', 'Dec'];
751
+
752
+ // 26 Feb 16:19:34
753
+ function timestamp() {
754
+ var d = new Date();
755
+ var time = [pad(d.getHours()),
756
+ pad(d.getMinutes()),
757
+ pad(d.getSeconds())].join(':');
758
+ return [d.getDate(), months[d.getMonth()], time].join(' ');
759
+ }
760
+
761
+
762
+ // log is just a thin wrapper to console.log that prepends a timestamp
763
+ exports.log = function() {
764
+ console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments));
765
+ };
766
+
767
+
768
+ /**
769
+ * Inherit the prototype methods from one constructor into another.
770
+ *
771
+ * The Function.prototype.inherits from lang.js rewritten as a standalone
772
+ * function (not on Function.prototype). NOTE: If this file is to be loaded
773
+ * during bootstrapping this function needs to be rewritten using some native
774
+ * functions as prototype setup using normal JavaScript does not work as
775
+ * expected during bootstrapping (see mirror.js in r114903).
776
+ *
777
+ * @param {function} ctor Constructor function which needs to inherit the
778
+ * prototype.
779
+ * @param {function} superCtor Constructor function to inherit prototype from.
780
+ */
781
+ exports.inherits = _dereq_('inherits');
782
+
783
+ exports._extend = function(origin, add) {
784
+ // Don't do anything if add isn't an object
785
+ if (!add || !isObject(add)) return origin;
786
+
787
+ var keys = Object.keys(add);
788
+ var i = keys.length;
789
+ while (i--) {
790
+ origin[keys[i]] = add[keys[i]];
791
+ }
792
+ return origin;
793
+ };
794
+
795
+ function hasOwnProperty(obj, prop) {
796
+ return Object.prototype.hasOwnProperty.call(obj, prop);
797
+ }
798
+
799
+ }).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
800
+ },{"./support/isBuffer":4,"_process":3,"inherits":2}],6:[function(_dereq_,module,exports){
801
+ // A recursive descent parser operates by defining functions for all
802
+ // syntactic elements, and recursively calling those, each function
803
+ // advancing the input stream and returning an AST node. Precedence
804
+ // of constructs (for example, the fact that `!x[1]` means `!(x[1])`
805
+ // instead of `(!x)[1]` is handled by the fact that the parser
806
+ // function that parses unary prefix operators is called first, and
807
+ // in turn calls the function that parses `[]` subscripts — that
808
+ // way, it'll receive the node for `x[1]` already parsed, and wraps
809
+ // *that* in the unary operator node.
810
+ //
811
+ // Acorn uses an [operator precedence parser][opp] to handle binary
812
+ // operator precedence, because it is much more compact than using
813
+ // the technique outlined above, which uses different, nesting
814
+ // functions to specify precedence, for all of the ten binary
815
+ // precedence levels that JavaScript defines.
816
+ //
817
+ // [opp]: http://en.wikipedia.org/wiki/Operator-precedence_parser
818
+
819
+ "use strict";
820
+
821
+ var tt = _dereq_("./tokentype").types;
822
+
823
+ var Parser = _dereq_("./state").Parser;
824
+
825
+ var reservedWords = _dereq_("./identifier").reservedWords;
826
+
827
+ var has = _dereq_("./util").has;
828
+
829
+ var pp = Parser.prototype;
830
+
831
+ // Check if property name clashes with already added.
832
+ // Object/class getters and setters are not allowed to clash —
833
+ // either with each other or with an init property — and in
834
+ // strict mode, init properties are also not allowed to be repeated.
835
+
836
+ pp.checkPropClash = function (prop, propHash) {
837
+ if (this.options.ecmaVersion >= 6) return;
838
+ var key = prop.key,
839
+ name = undefined;
840
+ switch (key.type) {
841
+ case "Identifier":
842
+ name = key.name;break;
843
+ case "Literal":
844
+ name = String(key.value);break;
845
+ default:
846
+ return;
847
+ }
848
+ var kind = prop.kind || "init",
849
+ other = undefined;
850
+ if (has(propHash, name)) {
851
+ other = propHash[name];
852
+ var isGetSet = kind !== "init";
853
+ if ((this.strict || isGetSet) && other[kind] || !(isGetSet ^ other.init)) this.raise(key.start, "Redefinition of property");
854
+ } else {
855
+ other = propHash[name] = {
856
+ init: false,
857
+ get: false,
858
+ set: false
859
+ };
860
+ }
861
+ other[kind] = true;
862
+ };
863
+
864
+ // ### Expression parsing
865
+
866
+ // These nest, from the most general expression type at the top to
867
+ // 'atomic', nondivisible expression types at the bottom. Most of
868
+ // the functions will simply let the function(s) below them parse,
869
+ // and, *if* the syntactic construct they handle is present, wrap
870
+ // the AST node that the inner parser gave them in another node.
871
+
872
+ // Parse a full expression. The optional arguments are used to
873
+ // forbid the `in` operator (in for loops initalization expressions)
874
+ // and provide reference for storing '=' operator inside shorthand
875
+ // property assignment in contexts where both object expression
876
+ // and object pattern might appear (so it's possible to raise
877
+ // delayed syntax error at correct position).
878
+
879
+ pp.parseExpression = function (noIn, refShorthandDefaultPos) {
880
+ var startPos = this.start,
881
+ startLoc = this.startLoc;
882
+ var expr = this.parseMaybeAssign(noIn, refShorthandDefaultPos);
883
+ if (this.type === tt.comma) {
884
+ var node = this.startNodeAt(startPos, startLoc);
885
+ node.expressions = [expr];
886
+ while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refShorthandDefaultPos));
887
+ return this.finishNode(node, "SequenceExpression");
888
+ }
889
+ return expr;
890
+ };
891
+
892
+ // Parse an assignment expression. This includes applications of
893
+ // operators like `+=`.
894
+
895
+ pp.parseMaybeAssign = function (noIn, refShorthandDefaultPos, afterLeftParse) {
896
+ if (this.type == tt._yield && this.inGenerator) return this.parseYield();
897
+
898
+ var failOnShorthandAssign = undefined;
899
+ if (!refShorthandDefaultPos) {
900
+ refShorthandDefaultPos = { start: 0 };
901
+ failOnShorthandAssign = true;
902
+ } else {
903
+ failOnShorthandAssign = false;
904
+ }
905
+ var startPos = this.start,
906
+ startLoc = this.startLoc;
907
+ if (this.type == tt.parenL || this.type == tt.name) this.potentialArrowAt = this.start;
908
+ var left = this.parseMaybeConditional(noIn, refShorthandDefaultPos);
909
+ if (afterLeftParse) left = afterLeftParse.call(this, left, startPos, startLoc);
910
+ if (this.type.isAssign) {
911
+ var node = this.startNodeAt(startPos, startLoc);
912
+ node.operator = this.value;
913
+ node.left = this.type === tt.eq ? this.toAssignable(left) : left;
914
+ refShorthandDefaultPos.start = 0; // reset because shorthand default was used correctly
915
+ this.checkLVal(left);
916
+ this.next();
917
+ node.right = this.parseMaybeAssign(noIn);
918
+ return this.finishNode(node, "AssignmentExpression");
919
+ } else if (failOnShorthandAssign && refShorthandDefaultPos.start) {
920
+ this.unexpected(refShorthandDefaultPos.start);
921
+ }
922
+ return left;
923
+ };
924
+
925
+ // Parse a ternary conditional (`?:`) operator.
926
+
927
+ pp.parseMaybeConditional = function (noIn, refShorthandDefaultPos) {
928
+ var startPos = this.start,
929
+ startLoc = this.startLoc;
930
+ var expr = this.parseExprOps(noIn, refShorthandDefaultPos);
931
+ if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;
932
+ if (this.eat(tt.question)) {
933
+ var node = this.startNodeAt(startPos, startLoc);
934
+ node.test = expr;
935
+ node.consequent = this.parseMaybeAssign();
936
+ this.expect(tt.colon);
937
+ node.alternate = this.parseMaybeAssign(noIn);
938
+ return this.finishNode(node, "ConditionalExpression");
939
+ }
940
+ return expr;
941
+ };
942
+
943
+ // Start the precedence parser.
944
+
945
+ pp.parseExprOps = function (noIn, refShorthandDefaultPos) {
946
+ var startPos = this.start,
947
+ startLoc = this.startLoc;
948
+ var expr = this.parseMaybeUnary(refShorthandDefaultPos);
949
+ if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;
950
+ return this.parseExprOp(expr, startPos, startLoc, -1, noIn);
951
+ };
952
+
953
+ // Parse binary operators with the operator precedence parsing
954
+ // algorithm. `left` is the left-hand side of the operator.
955
+ // `minPrec` provides context that allows the function to stop and
956
+ // defer further parser to one of its callers when it encounters an
957
+ // operator that has a lower precedence than the set it is parsing.
958
+
959
+ pp.parseExprOp = function (left, leftStartPos, leftStartLoc, minPrec, noIn) {
960
+ var prec = this.type.binop;
961
+ if (Array.isArray(leftStartPos)) {
962
+ if (this.options.locations && noIn === undefined) {
963
+ // shift arguments to left by one
964
+ noIn = minPrec;
965
+ minPrec = leftStartLoc;
966
+ // flatten leftStartPos
967
+ leftStartLoc = leftStartPos[1];
968
+ leftStartPos = leftStartPos[0];
969
+ }
970
+ }
971
+ if (prec != null && (!noIn || this.type !== tt._in)) {
972
+ if (prec > minPrec) {
973
+ var node = this.startNodeAt(leftStartPos, leftStartLoc);
974
+ node.left = left;
975
+ node.operator = this.value;
976
+ var op = this.type;
977
+ this.next();
978
+ var startPos = this.start,
979
+ startLoc = this.startLoc;
980
+ node.right = this.parseExprOp(this.parseMaybeUnary(), startPos, startLoc, prec, noIn);
981
+ this.finishNode(node, op === tt.logicalOR || op === tt.logicalAND ? "LogicalExpression" : "BinaryExpression");
982
+ return this.parseExprOp(node, leftStartPos, leftStartLoc, minPrec, noIn);
983
+ }
984
+ }
985
+ return left;
986
+ };
987
+
988
+ // Parse unary operators, both prefix and postfix.
989
+
990
+ pp.parseMaybeUnary = function (refShorthandDefaultPos) {
991
+ if (this.type.prefix) {
992
+ var node = this.startNode(),
993
+ update = this.type === tt.incDec;
994
+ node.operator = this.value;
995
+ node.prefix = true;
996
+ this.next();
997
+ node.argument = this.parseMaybeUnary();
998
+ if (refShorthandDefaultPos && refShorthandDefaultPos.start) this.unexpected(refShorthandDefaultPos.start);
999
+ if (update) this.checkLVal(node.argument);else if (this.strict && node.operator === "delete" && node.argument.type === "Identifier") this.raise(node.start, "Deleting local variable in strict mode");
1000
+ return this.finishNode(node, update ? "UpdateExpression" : "UnaryExpression");
1001
+ }
1002
+ var startPos = this.start,
1003
+ startLoc = this.startLoc;
1004
+ var expr = this.parseExprSubscripts(refShorthandDefaultPos);
1005
+ if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;
1006
+ while (this.type.postfix && !this.canInsertSemicolon()) {
1007
+ var node = this.startNodeAt(startPos, startLoc);
1008
+ node.operator = this.value;
1009
+ node.prefix = false;
1010
+ node.argument = expr;
1011
+ this.checkLVal(expr);
1012
+ this.next();
1013
+ expr = this.finishNode(node, "UpdateExpression");
1014
+ }
1015
+ return expr;
1016
+ };
1017
+
1018
+ // Parse call, dot, and `[]`-subscript expressions.
1019
+
1020
+ pp.parseExprSubscripts = function (refShorthandDefaultPos) {
1021
+ var startPos = this.start,
1022
+ startLoc = this.startLoc;
1023
+ var expr = this.parseExprAtom(refShorthandDefaultPos);
1024
+ if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;
1025
+ return this.parseSubscripts(expr, startPos, startLoc);
1026
+ };
1027
+
1028
+ pp.parseSubscripts = function (base, startPos, startLoc, noCalls) {
1029
+ if (Array.isArray(startPos)) {
1030
+ if (this.options.locations && noCalls === undefined) {
1031
+ // shift arguments to left by one
1032
+ noCalls = startLoc;
1033
+ // flatten startPos
1034
+ startLoc = startPos[1];
1035
+ startPos = startPos[0];
1036
+ }
1037
+ }
1038
+ for (;;) {
1039
+ if (this.eat(tt.dot)) {
1040
+ var node = this.startNodeAt(startPos, startLoc);
1041
+ node.object = base;
1042
+ node.property = this.parseIdent(true);
1043
+ node.computed = false;
1044
+ base = this.finishNode(node, "MemberExpression");
1045
+ } else if (this.eat(tt.bracketL)) {
1046
+ var node = this.startNodeAt(startPos, startLoc);
1047
+ node.object = base;
1048
+ node.property = this.parseExpression();
1049
+ node.computed = true;
1050
+ this.expect(tt.bracketR);
1051
+ base = this.finishNode(node, "MemberExpression");
1052
+ } else if (!noCalls && this.eat(tt.parenL)) {
1053
+ var node = this.startNodeAt(startPos, startLoc);
1054
+ node.callee = base;
1055
+ node.arguments = this.parseExprList(tt.parenR, false);
1056
+ base = this.finishNode(node, "CallExpression");
1057
+ } else if (this.type === tt.backQuote) {
1058
+ var node = this.startNodeAt(startPos, startLoc);
1059
+ node.tag = base;
1060
+ node.quasi = this.parseTemplate();
1061
+ base = this.finishNode(node, "TaggedTemplateExpression");
1062
+ } else {
1063
+ return base;
1064
+ }
1065
+ }
1066
+ };
1067
+
1068
+ // Parse an atomic expression — either a single token that is an
1069
+ // expression, an expression started by a keyword like `function` or
1070
+ // `new`, or an expression wrapped in punctuation like `()`, `[]`,
1071
+ // or `{}`.
1072
+
1073
+ pp.parseExprAtom = function (refShorthandDefaultPos) {
1074
+ var node = undefined,
1075
+ canBeArrow = this.potentialArrowAt == this.start;
1076
+ switch (this.type) {
1077
+ case tt._this:
1078
+ case tt._super:
1079
+ var type = this.type === tt._this ? "ThisExpression" : "Super";
1080
+ node = this.startNode();
1081
+ this.next();
1082
+ return this.finishNode(node, type);
1083
+
1084
+ case tt._yield:
1085
+ if (this.inGenerator) this.unexpected();
1086
+
1087
+ case tt.name:
1088
+ var startPos = this.start,
1089
+ startLoc = this.startLoc;
1090
+ var id = this.parseIdent(this.type !== tt.name);
1091
+ if (canBeArrow && !this.canInsertSemicolon() && this.eat(tt.arrow)) return this.parseArrowExpression(this.startNodeAt(startPos, startLoc), [id]);
1092
+ return id;
1093
+
1094
+ case tt.regexp:
1095
+ var value = this.value;
1096
+ node = this.parseLiteral(value.value);
1097
+ node.regex = { pattern: value.pattern, flags: value.flags };
1098
+ return node;
1099
+
1100
+ case tt.num:case tt.string:
1101
+ return this.parseLiteral(this.value);
1102
+
1103
+ case tt._null:case tt._true:case tt._false:
1104
+ node = this.startNode();
1105
+ node.value = this.type === tt._null ? null : this.type === tt._true;
1106
+ node.raw = this.type.keyword;
1107
+ this.next();
1108
+ return this.finishNode(node, "Literal");
1109
+
1110
+ case tt.parenL:
1111
+ return this.parseParenAndDistinguishExpression(canBeArrow);
1112
+
1113
+ case tt.bracketL:
1114
+ node = this.startNode();
1115
+ this.next();
1116
+ // check whether this is array comprehension or regular array
1117
+ if (this.options.ecmaVersion >= 7 && this.type === tt._for) {
1118
+ return this.parseComprehension(node, false);
1119
+ }
1120
+ node.elements = this.parseExprList(tt.bracketR, true, true, refShorthandDefaultPos);
1121
+ return this.finishNode(node, "ArrayExpression");
1122
+
1123
+ case tt.braceL:
1124
+ return this.parseObj(false, refShorthandDefaultPos);
1125
+
1126
+ case tt._function:
1127
+ node = this.startNode();
1128
+ this.next();
1129
+ return this.parseFunction(node, false);
1130
+
1131
+ case tt._class:
1132
+ return this.parseClass(this.startNode(), false);
1133
+
1134
+ case tt._new:
1135
+ return this.parseNew();
1136
+
1137
+ case tt.backQuote:
1138
+ return this.parseTemplate();
1139
+
1140
+ default:
1141
+ this.unexpected();
1142
+ }
1143
+ };
1144
+
1145
+ pp.parseLiteral = function (value) {
1146
+ var node = this.startNode();
1147
+ node.value = value;
1148
+ node.raw = this.input.slice(this.start, this.end);
1149
+ this.next();
1150
+ return this.finishNode(node, "Literal");
1151
+ };
1152
+
1153
+ pp.parseParenExpression = function () {
1154
+ this.expect(tt.parenL);
1155
+ var val = this.parseExpression();
1156
+ this.expect(tt.parenR);
1157
+ return val;
1158
+ };
1159
+
1160
+ pp.parseParenAndDistinguishExpression = function (canBeArrow) {
1161
+ var startPos = this.start,
1162
+ startLoc = this.startLoc,
1163
+ val = undefined;
1164
+ if (this.options.ecmaVersion >= 6) {
1165
+ this.next();
1166
+
1167
+ if (this.options.ecmaVersion >= 7 && this.type === tt._for) {
1168
+ return this.parseComprehension(this.startNodeAt(startPos, startLoc), true);
1169
+ }
1170
+
1171
+ var innerStartPos = this.start,
1172
+ innerStartLoc = this.startLoc;
1173
+ var exprList = [],
1174
+ first = true;
1175
+ var refShorthandDefaultPos = { start: 0 },
1176
+ spreadStart = undefined,
1177
+ innerParenStart = undefined;
1178
+ while (this.type !== tt.parenR) {
1179
+ first ? first = false : this.expect(tt.comma);
1180
+ if (this.type === tt.ellipsis) {
1181
+ spreadStart = this.start;
1182
+ exprList.push(this.parseParenItem(this.parseRest()));
1183
+ break;
1184
+ } else {
1185
+ if (this.type === tt.parenL && !innerParenStart) {
1186
+ innerParenStart = this.start;
1187
+ }
1188
+ exprList.push(this.parseMaybeAssign(false, refShorthandDefaultPos, this.parseParenItem));
1189
+ }
1190
+ }
1191
+ var innerEndPos = this.start,
1192
+ innerEndLoc = this.startLoc;
1193
+ this.expect(tt.parenR);
1194
+
1195
+ if (canBeArrow && !this.canInsertSemicolon() && this.eat(tt.arrow)) {
1196
+ if (innerParenStart) this.unexpected(innerParenStart);
1197
+ return this.parseParenArrowList(startPos, startLoc, exprList);
1198
+ }
1199
+
1200
+ if (!exprList.length) this.unexpected(this.lastTokStart);
1201
+ if (spreadStart) this.unexpected(spreadStart);
1202
+ if (refShorthandDefaultPos.start) this.unexpected(refShorthandDefaultPos.start);
1203
+
1204
+ if (exprList.length > 1) {
1205
+ val = this.startNodeAt(innerStartPos, innerStartLoc);
1206
+ val.expressions = exprList;
1207
+ this.finishNodeAt(val, "SequenceExpression", innerEndPos, innerEndLoc);
1208
+ } else {
1209
+ val = exprList[0];
1210
+ }
1211
+ } else {
1212
+ val = this.parseParenExpression();
1213
+ }
1214
+
1215
+ if (this.options.preserveParens) {
1216
+ var par = this.startNodeAt(startPos, startLoc);
1217
+ par.expression = val;
1218
+ return this.finishNode(par, "ParenthesizedExpression");
1219
+ } else {
1220
+ return val;
1221
+ }
1222
+ };
1223
+
1224
+ pp.parseParenItem = function (item) {
1225
+ return item;
1226
+ };
1227
+
1228
+ pp.parseParenArrowList = function (startPos, startLoc, exprList) {
1229
+ return this.parseArrowExpression(this.startNodeAt(startPos, startLoc), exprList);
1230
+ };
1231
+
1232
+ // New's precedence is slightly tricky. It must allow its argument
1233
+ // to be a `[]` or dot subscript expression, but not a call — at
1234
+ // least, not without wrapping it in parentheses. Thus, it uses the
1235
+
1236
+ var empty = [];
1237
+
1238
+ pp.parseNew = function () {
1239
+ var node = this.startNode();
1240
+ var meta = this.parseIdent(true);
1241
+ if (this.options.ecmaVersion >= 6 && this.eat(tt.dot)) {
1242
+ node.meta = meta;
1243
+ node.property = this.parseIdent(true);
1244
+ if (node.property.name !== "target") this.raise(node.property.start, "The only valid meta property for new is new.target");
1245
+ return this.finishNode(node, "MetaProperty");
1246
+ }
1247
+ var startPos = this.start,
1248
+ startLoc = this.startLoc;
1249
+ node.callee = this.parseSubscripts(this.parseExprAtom(), startPos, startLoc, true);
1250
+ if (this.eat(tt.parenL)) node.arguments = this.parseExprList(tt.parenR, false);else node.arguments = empty;
1251
+ return this.finishNode(node, "NewExpression");
1252
+ };
1253
+
1254
+ // Parse template expression.
1255
+
1256
+ pp.parseTemplateElement = function () {
1257
+ var elem = this.startNode();
1258
+ elem.value = {
1259
+ raw: this.input.slice(this.start, this.end),
1260
+ cooked: this.value
1261
+ };
1262
+ this.next();
1263
+ elem.tail = this.type === tt.backQuote;
1264
+ return this.finishNode(elem, "TemplateElement");
1265
+ };
1266
+
1267
+ pp.parseTemplate = function () {
1268
+ var node = this.startNode();
1269
+ this.next();
1270
+ node.expressions = [];
1271
+ var curElt = this.parseTemplateElement();
1272
+ node.quasis = [curElt];
1273
+ while (!curElt.tail) {
1274
+ this.expect(tt.dollarBraceL);
1275
+ node.expressions.push(this.parseExpression());
1276
+ this.expect(tt.braceR);
1277
+ node.quasis.push(curElt = this.parseTemplateElement());
1278
+ }
1279
+ this.next();
1280
+ return this.finishNode(node, "TemplateLiteral");
1281
+ };
1282
+
1283
+ // Parse an object literal or binding pattern.
1284
+
1285
+ pp.parseObj = function (isPattern, refShorthandDefaultPos) {
1286
+ var node = this.startNode(),
1287
+ first = true,
1288
+ propHash = {};
1289
+ node.properties = [];
1290
+ this.next();
1291
+ while (!this.eat(tt.braceR)) {
1292
+ if (!first) {
1293
+ this.expect(tt.comma);
1294
+ if (this.afterTrailingComma(tt.braceR)) break;
1295
+ } else first = false;
1296
+
1297
+ var prop = this.startNode(),
1298
+ isGenerator = undefined,
1299
+ startPos = undefined,
1300
+ startLoc = undefined;
1301
+ if (this.options.ecmaVersion >= 6) {
1302
+ prop.method = false;
1303
+ prop.shorthand = false;
1304
+ if (isPattern || refShorthandDefaultPos) {
1305
+ startPos = this.start;
1306
+ startLoc = this.startLoc;
1307
+ }
1308
+ if (!isPattern) isGenerator = this.eat(tt.star);
1309
+ }
1310
+ this.parsePropertyName(prop);
1311
+ this.parsePropertyValue(prop, isPattern, isGenerator, startPos, startLoc, refShorthandDefaultPos);
1312
+ this.checkPropClash(prop, propHash);
1313
+ node.properties.push(this.finishNode(prop, "Property"));
1314
+ }
1315
+ return this.finishNode(node, isPattern ? "ObjectPattern" : "ObjectExpression");
1316
+ };
1317
+
1318
+ pp.parsePropertyValue = function (prop, isPattern, isGenerator, startPos, startLoc, refShorthandDefaultPos) {
1319
+ if (this.eat(tt.colon)) {
1320
+ prop.value = isPattern ? this.parseMaybeDefault(this.start, this.startLoc) : this.parseMaybeAssign(false, refShorthandDefaultPos);
1321
+ prop.kind = "init";
1322
+ } else if (this.options.ecmaVersion >= 6 && this.type === tt.parenL) {
1323
+ if (isPattern) this.unexpected();
1324
+ prop.kind = "init";
1325
+ prop.method = true;
1326
+ prop.value = this.parseMethod(isGenerator);
1327
+ } else if (this.options.ecmaVersion >= 5 && !prop.computed && prop.key.type === "Identifier" && (prop.key.name === "get" || prop.key.name === "set") && (this.type != tt.comma && this.type != tt.braceR)) {
1328
+ if (isGenerator || isPattern) this.unexpected();
1329
+ prop.kind = prop.key.name;
1330
+ this.parsePropertyName(prop);
1331
+ prop.value = this.parseMethod(false);
1332
+ } else if (this.options.ecmaVersion >= 6 && !prop.computed && prop.key.type === "Identifier") {
1333
+ prop.kind = "init";
1334
+ if (isPattern) {
1335
+ if (this.isKeyword(prop.key.name) || this.strict && (reservedWords.strictBind(prop.key.name) || reservedWords.strict(prop.key.name)) || !this.options.allowReserved && this.isReservedWord(prop.key.name)) this.raise(prop.key.start, "Binding " + prop.key.name);
1336
+ prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key);
1337
+ } else if (this.type === tt.eq && refShorthandDefaultPos) {
1338
+ if (!refShorthandDefaultPos.start) refShorthandDefaultPos.start = this.start;
1339
+ prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key);
1340
+ } else {
1341
+ prop.value = prop.key;
1342
+ }
1343
+ prop.shorthand = true;
1344
+ } else this.unexpected();
1345
+ };
1346
+
1347
+ pp.parsePropertyName = function (prop) {
1348
+ if (this.options.ecmaVersion >= 6) {
1349
+ if (this.eat(tt.bracketL)) {
1350
+ prop.computed = true;
1351
+ prop.key = this.parseMaybeAssign();
1352
+ this.expect(tt.bracketR);
1353
+ return prop.key;
1354
+ } else {
1355
+ prop.computed = false;
1356
+ }
1357
+ }
1358
+ return prop.key = this.type === tt.num || this.type === tt.string ? this.parseExprAtom() : this.parseIdent(true);
1359
+ };
1360
+
1361
+ // Initialize empty function node.
1362
+
1363
+ pp.initFunction = function (node) {
1364
+ node.id = null;
1365
+ if (this.options.ecmaVersion >= 6) {
1366
+ node.generator = false;
1367
+ node.expression = false;
1368
+ }
1369
+ };
1370
+
1371
+ // Parse object or class method.
1372
+
1373
+ pp.parseMethod = function (isGenerator) {
1374
+ var node = this.startNode();
1375
+ this.initFunction(node);
1376
+ this.expect(tt.parenL);
1377
+ node.params = this.parseBindingList(tt.parenR, false, false);
1378
+ var allowExpressionBody = undefined;
1379
+ if (this.options.ecmaVersion >= 6) {
1380
+ node.generator = isGenerator;
1381
+ allowExpressionBody = true;
1382
+ } else {
1383
+ allowExpressionBody = false;
1384
+ }
1385
+ this.parseFunctionBody(node, allowExpressionBody);
1386
+ return this.finishNode(node, "FunctionExpression");
1387
+ };
1388
+
1389
+ // Parse arrow function expression with given parameters.
1390
+
1391
+ pp.parseArrowExpression = function (node, params) {
1392
+ this.initFunction(node);
1393
+ node.params = this.toAssignableList(params, true);
1394
+ this.parseFunctionBody(node, true);
1395
+ return this.finishNode(node, "ArrowFunctionExpression");
1396
+ };
1397
+
1398
+ // Parse function body and check parameters.
1399
+
1400
+ pp.parseFunctionBody = function (node, allowExpression) {
1401
+ var isExpression = allowExpression && this.type !== tt.braceL;
1402
+
1403
+ if (isExpression) {
1404
+ node.body = this.parseMaybeAssign();
1405
+ node.expression = true;
1406
+ } else {
1407
+ // Start a new scope with regard to labels and the `inFunction`
1408
+ // flag (restore them to their old value afterwards).
1409
+ var oldInFunc = this.inFunction,
1410
+ oldInGen = this.inGenerator,
1411
+ oldLabels = this.labels;
1412
+ this.inFunction = true;this.inGenerator = node.generator;this.labels = [];
1413
+ node.body = this.parseBlock(true);
1414
+ node.expression = false;
1415
+ this.inFunction = oldInFunc;this.inGenerator = oldInGen;this.labels = oldLabels;
1416
+ }
1417
+
1418
+ // If this is a strict mode function, verify that argument names
1419
+ // are not repeated, and it does not try to bind the words `eval`
1420
+ // or `arguments`.
1421
+ if (this.strict || !isExpression && node.body.body.length && this.isUseStrict(node.body.body[0])) {
1422
+ var nameHash = {},
1423
+ oldStrict = this.strict;
1424
+ this.strict = true;
1425
+ if (node.id) this.checkLVal(node.id, true);
1426
+ for (var i = 0; i < node.params.length; i++) {
1427
+ this.checkLVal(node.params[i], true, nameHash);
1428
+ }this.strict = oldStrict;
1429
+ }
1430
+ };
1431
+
1432
+ // Parses a comma-separated list of expressions, and returns them as
1433
+ // an array. `close` is the token type that ends the list, and
1434
+ // `allowEmpty` can be turned on to allow subsequent commas with
1435
+ // nothing in between them to be parsed as `null` (which is needed
1436
+ // for array literals).
1437
+
1438
+ pp.parseExprList = function (close, allowTrailingComma, allowEmpty, refShorthandDefaultPos) {
1439
+ var elts = [],
1440
+ first = true;
1441
+ while (!this.eat(close)) {
1442
+ if (!first) {
1443
+ this.expect(tt.comma);
1444
+ if (allowTrailingComma && this.afterTrailingComma(close)) break;
1445
+ } else first = false;
1446
+
1447
+ if (allowEmpty && this.type === tt.comma) {
1448
+ elts.push(null);
1449
+ } else {
1450
+ if (this.type === tt.ellipsis) elts.push(this.parseSpread(refShorthandDefaultPos));else elts.push(this.parseMaybeAssign(false, refShorthandDefaultPos));
1451
+ }
1452
+ }
1453
+ return elts;
1454
+ };
1455
+
1456
+ // Parse the next token as an identifier. If `liberal` is true (used
1457
+ // when parsing properties), it will also convert keywords into
1458
+ // identifiers.
1459
+
1460
+ pp.parseIdent = function (liberal) {
1461
+ var node = this.startNode();
1462
+ if (liberal && this.options.allowReserved == "never") liberal = false;
1463
+ if (this.type === tt.name) {
1464
+ if (!liberal && (!this.options.allowReserved && this.isReservedWord(this.value) || this.strict && reservedWords.strict(this.value) && (this.options.ecmaVersion >= 6 || this.input.slice(this.start, this.end).indexOf("\\") == -1))) this.raise(this.start, "The keyword '" + this.value + "' is reserved");
1465
+ node.name = this.value;
1466
+ } else if (liberal && this.type.keyword) {
1467
+ node.name = this.type.keyword;
1468
+ } else {
1469
+ this.unexpected();
1470
+ }
1471
+ this.next();
1472
+ return this.finishNode(node, "Identifier");
1473
+ };
1474
+
1475
+ // Parses yield expression inside generator.
1476
+
1477
+ pp.parseYield = function () {
1478
+ var node = this.startNode();
1479
+ this.next();
1480
+ if (this.type == tt.semi || this.canInsertSemicolon() || this.type != tt.star && !this.type.startsExpr) {
1481
+ node.delegate = false;
1482
+ node.argument = null;
1483
+ } else {
1484
+ node.delegate = this.eat(tt.star);
1485
+ node.argument = this.parseMaybeAssign();
1486
+ }
1487
+ return this.finishNode(node, "YieldExpression");
1488
+ };
1489
+
1490
+ // Parses array and generator comprehensions.
1491
+
1492
+ pp.parseComprehension = function (node, isGenerator) {
1493
+ node.blocks = [];
1494
+ while (this.type === tt._for) {
1495
+ var block = this.startNode();
1496
+ this.next();
1497
+ this.expect(tt.parenL);
1498
+ block.left = this.parseBindingAtom();
1499
+ this.checkLVal(block.left, true);
1500
+ this.expectContextual("of");
1501
+ block.right = this.parseExpression();
1502
+ this.expect(tt.parenR);
1503
+ node.blocks.push(this.finishNode(block, "ComprehensionBlock"));
1504
+ }
1505
+ node.filter = this.eat(tt._if) ? this.parseParenExpression() : null;
1506
+ node.body = this.parseExpression();
1507
+ this.expect(isGenerator ? tt.parenR : tt.bracketR);
1508
+ node.generator = isGenerator;
1509
+ return this.finishNode(node, "ComprehensionExpression");
1510
+ };
1511
+
1512
+ },{"./identifier":7,"./state":13,"./tokentype":17,"./util":18}],7:[function(_dereq_,module,exports){
1513
+
1514
+
1515
+ // Test whether a given character code starts an identifier.
1516
+
1517
+ "use strict";
1518
+
1519
+ exports.isIdentifierStart = isIdentifierStart;
1520
+
1521
+ // Test whether a given character is part of an identifier.
1522
+
1523
+ exports.isIdentifierChar = isIdentifierChar;
1524
+ exports.__esModule = true;
1525
+ // This is a trick taken from Esprima. It turns out that, on
1526
+ // non-Chrome browsers, to check whether a string is in a set, a
1527
+ // predicate containing a big ugly `switch` statement is faster than
1528
+ // a regular expression, and on Chrome the two are about on par.
1529
+ // This function uses `eval` (non-lexical) to produce such a
1530
+ // predicate from a space-separated string of words.
1531
+ //
1532
+ // It starts by sorting the words by length.
1533
+
1534
+ function makePredicate(words) {
1535
+ words = words.split(" ");
1536
+ var f = "",
1537
+ cats = [];
1538
+ out: for (var i = 0; i < words.length; ++i) {
1539
+ for (var j = 0; j < cats.length; ++j) {
1540
+ if (cats[j][0].length == words[i].length) {
1541
+ cats[j].push(words[i]);
1542
+ continue out;
1543
+ }
1544
+ }cats.push([words[i]]);
1545
+ }
1546
+ function compareTo(arr) {
1547
+ if (arr.length == 1) {
1548
+ return f += "return str === " + JSON.stringify(arr[0]) + ";";
1549
+ }f += "switch(str){";
1550
+ for (var i = 0; i < arr.length; ++i) {
1551
+ f += "case " + JSON.stringify(arr[i]) + ":";
1552
+ }f += "return true}return false;";
1553
+ }
1554
+
1555
+ // When there are more than three length categories, an outer
1556
+ // switch first dispatches on the lengths, to save on comparisons.
1557
+
1558
+ if (cats.length > 3) {
1559
+ cats.sort(function (a, b) {
1560
+ return b.length - a.length;
1561
+ });
1562
+ f += "switch(str.length){";
1563
+ for (var i = 0; i < cats.length; ++i) {
1564
+ var cat = cats[i];
1565
+ f += "case " + cat[0].length + ":";
1566
+ compareTo(cat);
1567
+ }
1568
+ f += "}"
1569
+
1570
+ // Otherwise, simply generate a flat `switch` statement.
1571
+
1572
+ ;
1573
+ } else {
1574
+ compareTo(words);
1575
+ }
1576
+ return new Function("str", f);
1577
+ }
1578
+
1579
+ // Reserved word lists for various dialects of the language
1580
+
1581
+ var reservedWords = {
1582
+ 3: makePredicate("abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile"),
1583
+ 5: makePredicate("class enum extends super const export import"),
1584
+ 6: makePredicate("enum await"),
1585
+ strict: makePredicate("implements interface let package private protected public static yield"),
1586
+ strictBind: makePredicate("eval arguments")
1587
+ };
1588
+
1589
+ exports.reservedWords = reservedWords;
1590
+ // And the keywords
1591
+
1592
+ var ecma5AndLessKeywords = "break case catch continue debugger default do else finally for function if return switch throw try var while with null true false instanceof typeof void delete new in this";
1593
+
1594
+ var keywords = {
1595
+ 5: makePredicate(ecma5AndLessKeywords),
1596
+ 6: makePredicate(ecma5AndLessKeywords + " let const class extends export import yield super")
1597
+ };
1598
+
1599
+ exports.keywords = keywords;
1600
+ // ## Character categories
1601
+
1602
+ // Big ugly regular expressions that match characters in the
1603
+ // whitespace, identifier, and identifier-start categories. These
1604
+ // are only applied when a character is found to actually have a
1605
+ // code point above 128.
1606
+ // Generated by `tools/generate-identifier-regex.js`.
1607
+
1608
+ var nonASCIIidentifierStartChars = "ªµºÀ-ÖØ-öø-ˁˆ-ˑˠ-ˤˬˮͰ-ʹͶͷͺ-ͽͿΆΈ-ΊΌΎ-ΡΣ-ϵϷ-ҁҊ-ԯԱ-Ֆՙա-ևא-תװ-ײؠ-يٮٯٱ-ۓەۥۦۮۯۺ-ۼۿܐܒ-ܯݍ-ޥޱߊ-ߪߴߵߺࠀ-ࠕࠚࠤࠨࡀ-ࡘࢠ-ࢲऄ-हऽॐक़-ॡॱ-ঀঅ-ঌএঐও-নপ-রলশ-হঽৎড়ঢ়য়-ৡৰৱਅ-ਊਏਐਓ-ਨਪ-ਰਲਲ਼ਵਸ਼ਸਹਖ਼-ੜਫ਼ੲ-ੴઅ-ઍએ-ઑઓ-નપ-રલળવ-હઽૐૠૡଅ-ଌଏଐଓ-ନପ-ରଲଳଵ-ହଽଡ଼ଢ଼ୟ-ୡୱஃஅ-ஊஎ-ஐஒ-கஙசஜஞடணதந-பம-ஹௐఅ-ఌఎ-ఐఒ-నప-హఽౘౙౠౡಅ-ಌಎ-ಐಒ-ನಪ-ಳವ-ಹಽೞೠೡೱೲഅ-ഌഎ-ഐഒ-ഺഽൎൠൡൺ-ൿඅ-ඖක-නඳ-රලව-ෆก-ะาำเ-ๆກຂຄງຈຊຍດ-ທນ-ຟມ-ຣລວສຫອ-ະາຳຽເ-ໄໆໜ-ໟༀཀ-ཇཉ-ཬྈ-ྌက-ဪဿၐ-ၕၚ-ၝၡၥၦၮ-ၰၵ-ႁႎႠ-ჅჇჍა-ჺჼ-ቈቊ-ቍቐ-ቖቘቚ-ቝበ-ኈኊ-ኍነ-ኰኲ-ኵኸ-ኾዀዂ-ዅወ-ዖዘ-ጐጒ-ጕጘ-ፚᎀ-ᎏᎠ-Ᏼᐁ-ᙬᙯ-ᙿᚁ-ᚚᚠ-ᛪᛮ-ᛸᜀ-ᜌᜎ-ᜑᜠ-ᜱᝀ-ᝑᝠ-ᝬᝮ-ᝰក-ឳៗៜᠠ-ᡷᢀ-ᢨᢪᢰ-ᣵᤀ-ᤞᥐ-ᥭᥰ-ᥴᦀ-ᦫᧁ-ᧇᨀ-ᨖᨠ-ᩔᪧᬅ-ᬳᭅ-ᭋᮃ-ᮠᮮᮯᮺ-ᯥᰀ-ᰣᱍ-ᱏᱚ-ᱽᳩ-ᳬᳮ-ᳱᳵᳶᴀ-ᶿḀ-ἕἘ-Ἕἠ-ὅὈ-Ὅὐ-ὗὙὛὝὟ-ώᾀ-ᾴᾶ-ᾼιῂ-ῄῆ-ῌῐ-ΐῖ-Ίῠ-Ῥῲ-ῴῶ-ῼⁱⁿₐ-ₜℂℇℊ-ℓℕ℘-ℝℤΩℨK-ℹℼ-ℿⅅ-ⅉⅎⅠ-ↈⰀ-Ⱞⰰ-ⱞⱠ-ⳤⳫ-ⳮⳲⳳⴀ-ⴥⴧⴭⴰ-ⵧⵯⶀ-ⶖⶠ-ⶦⶨ-ⶮⶰ-ⶶⶸ-ⶾⷀ-ⷆⷈ-ⷎⷐ-ⷖⷘ-ⷞ々-〇〡-〩〱-〵〸-〼ぁ-ゖ゛-ゟァ-ヺー-ヿㄅ-ㄭㄱ-ㆎㆠ-ㆺㇰ-ㇿ㐀-䶵一-鿌ꀀ-ꒌꓐ-ꓽꔀ-ꘌꘐ-ꘟꘪꘫꙀ-ꙮꙿ-ꚝꚠ-ꛯꜗ-ꜟꜢ-ꞈꞋ-ꞎꞐ-ꞭꞰꞱꟷ-ꠁꠃ-ꠅꠇ-ꠊꠌ-ꠢꡀ-ꡳꢂ-ꢳꣲ-ꣷꣻꤊ-ꤥꤰ-ꥆꥠ-ꥼꦄ-ꦲꧏꧠ-ꧤꧦ-ꧯꧺ-ꧾꨀ-ꨨꩀ-ꩂꩄ-ꩋꩠ-ꩶꩺꩾ-ꪯꪱꪵꪶꪹ-ꪽꫀꫂꫛ-ꫝꫠ-ꫪꫲ-ꫴꬁ-ꬆꬉ-ꬎꬑ-ꬖꬠ-ꬦꬨ-ꬮꬰ-ꭚꭜ-ꭟꭤꭥꯀ-ꯢ가-힣ힰ-ퟆퟋ-ퟻ豈-舘並-龎ff-stﬓ-ﬗיִײַ-ﬨשׁ-זּטּ-לּמּנּסּףּפּצּ-ﮱﯓ-ﴽﵐ-ﶏﶒ-ﷇﷰ-ﷻﹰ-ﹴﹶ-ﻼA-Za-zヲ-하-ᅦᅧ-ᅬᅭ-ᅲᅳ-ᅵ";
1609
+ var nonASCIIidentifierChars = "‌‍·̀-ͯ·҃-֑҇-ׇֽֿׁׂׅׄؐ-ًؚ-٩ٰۖ-ۜ۟-۪ۤۧۨ-ۭ۰-۹ܑܰ-݊ަ-ް߀-߉߫-߳ࠖ-࠙ࠛ-ࠣࠥ-ࠧࠩ-࡙࠭-࡛ࣤ-ःऺ-़ा-ॏ॑-ॗॢॣ०-९ঁ-ঃ়া-ৄেৈো-্ৗৢৣ০-৯ਁ-ਃ਼ਾ-ੂੇੈੋ-੍ੑ੦-ੱੵઁ-ઃ઼ા-ૅે-ૉો-્ૢૣ૦-૯ଁ-ଃ଼ା-ୄେୈୋ-୍ୖୗୢୣ୦-୯ஂா-ூெ-ைொ-்ௗ௦-௯ఀ-ఃా-ౄె-ైొ-్ౕౖౢౣ౦-౯ಁ-ಃ಼ಾ-ೄೆ-ೈೊ-್ೕೖೢೣ೦-೯ഁ-ഃാ-ൄെ-ൈൊ-്ൗൢൣ൦-൯ංඃ්ා-ුූෘ-ෟ෦-෯ෲෳัิ-ฺ็-๎๐-๙ັິ-ູົຼ່-ໍ໐-໙༘༙༠-༩༹༵༷༾༿ཱ-྄྆྇ྍ-ྗྙ-ྼ࿆ါ-ှ၀-၉ၖ-ၙၞ-ၠၢ-ၤၧ-ၭၱ-ၴႂ-ႍႏ-ႝ፝-፟፩-፱ᜒ-᜔ᜲ-᜴ᝒᝓᝲᝳ឴-៓៝០-៩᠋-᠍᠐-᠙ᢩᤠ-ᤫᤰ-᤻᥆-᥏ᦰ-ᧀᧈᧉ᧐-᧚ᨗ-ᨛᩕ-ᩞ᩠-᩿᩼-᪉᪐-᪙᪰-᪽ᬀ-ᬄ᬴-᭄᭐-᭙᭫-᭳ᮀ-ᮂᮡ-ᮭ᮰-᮹᯦-᯳ᰤ-᰷᱀-᱉᱐-᱙᳐-᳔᳒-᳨᳭ᳲ-᳴᳸᳹᷀-᷵᷼-᷿‿⁀⁔⃐-⃥⃜⃡-⃰⳯-⵿⳱ⷠ-〪ⷿ-゙゚〯꘠-꘩꙯ꙴ-꙽ꚟ꛰꛱ꠂ꠆ꠋꠣ-ꠧꢀꢁꢴ-꣄꣐-꣙꣠-꣱꤀-꤉ꤦ-꤭ꥇ-꥓ꦀ-ꦃ꦳-꧀꧐-꧙ꧥ꧰-꧹ꨩ-ꨶꩃꩌꩍ꩐-꩙ꩻ-ꩽꪰꪲ-ꪴꪷꪸꪾ꪿꫁ꫫ-ꫯꫵ꫶ꯣ-ꯪ꯬꯭꯰-꯹ﬞ︀-️︠-︭︳︴﹍-﹏0-9_";
1610
+
1611
+ var nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]");
1612
+ var nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + "]");
1613
+
1614
+ nonASCIIidentifierStartChars = nonASCIIidentifierChars = null;
1615
+
1616
+ // These are a run-length and offset encoded representation of the
1617
+ // >0xffff code points that are a valid part of identifiers. The
1618
+ // offset starts at 0x10000, and each pair of numbers represents an
1619
+ // offset to the next range, and then a size of the range. They were
1620
+ // generated by tools/generate-identifier-regex.js
1621
+ var astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 17, 26, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 99, 39, 9, 51, 157, 310, 10, 21, 11, 7, 153, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 98, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 26, 45, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 955, 52, 76, 44, 33, 24, 27, 35, 42, 34, 4, 0, 13, 47, 15, 3, 22, 0, 38, 17, 2, 24, 133, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 32, 4, 287, 47, 21, 1, 2, 0, 185, 46, 82, 47, 21, 0, 60, 42, 502, 63, 32, 0, 449, 56, 1288, 920, 104, 110, 2962, 1070, 13266, 568, 8, 30, 114, 29, 19, 47, 17, 3, 32, 20, 6, 18, 881, 68, 12, 0, 67, 12, 16481, 1, 3071, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 4149, 196, 1340, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42710, 42, 4148, 12, 221, 16355, 541];
1622
+ var astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 1306, 2, 54, 14, 32, 9, 16, 3, 46, 10, 54, 9, 7, 2, 37, 13, 2, 9, 52, 0, 13, 2, 49, 13, 16, 9, 83, 11, 168, 11, 6, 9, 8, 2, 57, 0, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 316, 19, 13, 9, 214, 6, 3, 8, 112, 16, 16, 9, 82, 12, 9, 9, 535, 9, 20855, 9, 135, 4, 60, 6, 26, 9, 1016, 45, 17, 3, 19723, 1, 5319, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 4305, 6, 792618, 239];
1623
+
1624
+ // This has a complexity linear to the value of the code. The
1625
+ // assumption is that looking up astral identifier characters is
1626
+ // rare.
1627
+ function isInAstralSet(code, set) {
1628
+ var pos = 65536;
1629
+ for (var i = 0; i < set.length; i += 2) {
1630
+ pos += set[i];
1631
+ if (pos > code) {
1632
+ return false;
1633
+ }pos += set[i + 1];
1634
+ if (pos >= code) {
1635
+ return true;
1636
+ }
1637
+ }
1638
+ }
1639
+ function isIdentifierStart(code, astral) {
1640
+ if (code < 65) {
1641
+ return code === 36;
1642
+ }if (code < 91) {
1643
+ return true;
1644
+ }if (code < 97) {
1645
+ return code === 95;
1646
+ }if (code < 123) {
1647
+ return true;
1648
+ }if (code <= 65535) {
1649
+ return code >= 170 && nonASCIIidentifierStart.test(String.fromCharCode(code));
1650
+ }if (astral === false) {
1651
+ return false;
1652
+ }return isInAstralSet(code, astralIdentifierStartCodes);
1653
+ }
1654
+
1655
+ function isIdentifierChar(code, astral) {
1656
+ if (code < 48) {
1657
+ return code === 36;
1658
+ }if (code < 58) {
1659
+ return true;
1660
+ }if (code < 65) {
1661
+ return false;
1662
+ }if (code < 91) {
1663
+ return true;
1664
+ }if (code < 97) {
1665
+ return code === 95;
1666
+ }if (code < 123) {
1667
+ return true;
1668
+ }if (code <= 65535) {
1669
+ return code >= 170 && nonASCIIidentifier.test(String.fromCharCode(code));
1670
+ }if (astral === false) {
1671
+ return false;
1672
+ }return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes);
1673
+ }
1674
+
1675
+ },{}],8:[function(_dereq_,module,exports){
1676
+ "use strict";
1677
+
1678
+ var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
1679
+
1680
+ // The `getLineInfo` function is mostly useful when the
1681
+ // `locations` option is off (for performance reasons) and you
1682
+ // want to find the line/column position for a given character
1683
+ // offset. `input` should be the code string that the offset refers
1684
+ // into.
1685
+
1686
+ exports.getLineInfo = getLineInfo;
1687
+ exports.__esModule = true;
1688
+
1689
+ var Parser = _dereq_("./state").Parser;
1690
+
1691
+ var lineBreakG = _dereq_("./whitespace").lineBreakG;
1692
+
1693
+ var deprecate = _dereq_("util").deprecate;
1694
+
1695
+ // These are used when `options.locations` is on, for the
1696
+ // `startLoc` and `endLoc` properties.
1697
+
1698
+ var Position = exports.Position = (function () {
1699
+ function Position(line, col) {
1700
+ _classCallCheck(this, Position);
1701
+
1702
+ this.line = line;
1703
+ this.column = col;
1704
+ }
1705
+
1706
+ Position.prototype.offset = function offset(n) {
1707
+ return new Position(this.line, this.column + n);
1708
+ };
1709
+
1710
+ return Position;
1711
+ })();
1712
+
1713
+ var SourceLocation = exports.SourceLocation = function SourceLocation(p, start, end) {
1714
+ _classCallCheck(this, SourceLocation);
1715
+
1716
+ this.start = start;
1717
+ this.end = end;
1718
+ if (p.sourceFile !== null) this.source = p.sourceFile;
1719
+ };
1720
+
1721
+ function getLineInfo(input, offset) {
1722
+ for (var line = 1, cur = 0;;) {
1723
+ lineBreakG.lastIndex = cur;
1724
+ var match = lineBreakG.exec(input);
1725
+ if (match && match.index < offset) {
1726
+ ++line;
1727
+ cur = match.index + match[0].length;
1728
+ } else {
1729
+ return new Position(line, offset - cur);
1730
+ }
1731
+ }
1732
+ }
1733
+
1734
+ var pp = Parser.prototype;
1735
+
1736
+ // This function is used to raise exceptions on parse errors. It
1737
+ // takes an offset integer (into the current `input`) to indicate
1738
+ // the location of the error, attaches the position to the end
1739
+ // of the error message, and then raises a `SyntaxError` with that
1740
+ // message.
1741
+
1742
+ pp.raise = function (pos, message) {
1743
+ var loc = getLineInfo(this.input, pos);
1744
+ message += " (" + loc.line + ":" + loc.column + ")";
1745
+ var err = new SyntaxError(message);
1746
+ err.pos = pos;err.loc = loc;err.raisedAt = this.pos;
1747
+ throw err;
1748
+ };
1749
+
1750
+ pp.curPosition = function () {
1751
+ return new Position(this.curLine, this.pos - this.lineStart);
1752
+ };
1753
+
1754
+ pp.markPosition = function () {
1755
+ return this.options.locations ? [this.start, this.startLoc] : this.start;
1756
+ };
1757
+
1758
+ },{"./state":13,"./whitespace":19,"util":5}],9:[function(_dereq_,module,exports){
1759
+ "use strict";
1760
+
1761
+ var tt = _dereq_("./tokentype").types;
1762
+
1763
+ var Parser = _dereq_("./state").Parser;
1764
+
1765
+ var reservedWords = _dereq_("./identifier").reservedWords;
1766
+
1767
+ var has = _dereq_("./util").has;
1768
+
1769
+ var pp = Parser.prototype;
1770
+
1771
+ // Convert existing expression atom to assignable pattern
1772
+ // if possible.
1773
+
1774
+ pp.toAssignable = function (node, isBinding) {
1775
+ if (this.options.ecmaVersion >= 6 && node) {
1776
+ switch (node.type) {
1777
+ case "Identifier":
1778
+ case "ObjectPattern":
1779
+ case "ArrayPattern":
1780
+ case "AssignmentPattern":
1781
+ break;
1782
+
1783
+ case "ObjectExpression":
1784
+ node.type = "ObjectPattern";
1785
+ for (var i = 0; i < node.properties.length; i++) {
1786
+ var prop = node.properties[i];
1787
+ if (prop.kind !== "init") this.raise(prop.key.start, "Object pattern can't contain getter or setter");
1788
+ this.toAssignable(prop.value, isBinding);
1789
+ }
1790
+ break;
1791
+
1792
+ case "ArrayExpression":
1793
+ node.type = "ArrayPattern";
1794
+ this.toAssignableList(node.elements, isBinding);
1795
+ break;
1796
+
1797
+ case "AssignmentExpression":
1798
+ if (node.operator === "=") {
1799
+ node.type = "AssignmentPattern";
1800
+ } else {
1801
+ this.raise(node.left.end, "Only '=' operator can be used for specifying default value.");
1802
+ }
1803
+ break;
1804
+
1805
+ case "ParenthesizedExpression":
1806
+ node.expression = this.toAssignable(node.expression, isBinding);
1807
+ break;
1808
+
1809
+ case "MemberExpression":
1810
+ if (!isBinding) break;
1811
+
1812
+ default:
1813
+ this.raise(node.start, "Assigning to rvalue");
1814
+ }
1815
+ }
1816
+ return node;
1817
+ };
1818
+
1819
+ // Convert list of expression atoms to binding list.
1820
+
1821
+ pp.toAssignableList = function (exprList, isBinding) {
1822
+ var end = exprList.length;
1823
+ if (end) {
1824
+ var last = exprList[end - 1];
1825
+ if (last && last.type == "RestElement") {
1826
+ --end;
1827
+ } else if (last && last.type == "SpreadElement") {
1828
+ last.type = "RestElement";
1829
+ var arg = last.argument;
1830
+ this.toAssignable(arg, isBinding);
1831
+ if (arg.type !== "Identifier" && arg.type !== "MemberExpression" && arg.type !== "ArrayPattern") this.unexpected(arg.start);
1832
+ --end;
1833
+ }
1834
+ }
1835
+ for (var i = 0; i < end; i++) {
1836
+ var elt = exprList[i];
1837
+ if (elt) this.toAssignable(elt, isBinding);
1838
+ }
1839
+ return exprList;
1840
+ };
1841
+
1842
+ // Parses spread element.
1843
+
1844
+ pp.parseSpread = function (refShorthandDefaultPos) {
1845
+ var node = this.startNode();
1846
+ this.next();
1847
+ node.argument = this.parseMaybeAssign(refShorthandDefaultPos);
1848
+ return this.finishNode(node, "SpreadElement");
1849
+ };
1850
+
1851
+ pp.parseRest = function () {
1852
+ var node = this.startNode();
1853
+ this.next();
1854
+ node.argument = this.type === tt.name || this.type === tt.bracketL ? this.parseBindingAtom() : this.unexpected();
1855
+ return this.finishNode(node, "RestElement");
1856
+ };
1857
+
1858
+ // Parses lvalue (assignable) atom.
1859
+
1860
+ pp.parseBindingAtom = function () {
1861
+ if (this.options.ecmaVersion < 6) return this.parseIdent();
1862
+ switch (this.type) {
1863
+ case tt.name:
1864
+ return this.parseIdent();
1865
+
1866
+ case tt.bracketL:
1867
+ var node = this.startNode();
1868
+ this.next();
1869
+ node.elements = this.parseBindingList(tt.bracketR, true, true);
1870
+ return this.finishNode(node, "ArrayPattern");
1871
+
1872
+ case tt.braceL:
1873
+ return this.parseObj(true);
1874
+
1875
+ default:
1876
+ this.unexpected();
1877
+ }
1878
+ };
1879
+
1880
+ pp.parseBindingList = function (close, allowEmpty, allowTrailingComma) {
1881
+ var elts = [],
1882
+ first = true;
1883
+ while (!this.eat(close)) {
1884
+ if (first) first = false;else this.expect(tt.comma);
1885
+ if (allowEmpty && this.type === tt.comma) {
1886
+ elts.push(null);
1887
+ } else if (allowTrailingComma && this.afterTrailingComma(close)) {
1888
+ break;
1889
+ } else if (this.type === tt.ellipsis) {
1890
+ var rest = this.parseRest();
1891
+ this.parseBindingListItem(rest);
1892
+ elts.push(rest);
1893
+ this.expect(close);
1894
+ break;
1895
+ } else {
1896
+ var elem = this.parseMaybeDefault(this.start, this.startLoc);
1897
+ this.parseBindingListItem(elem);
1898
+ elts.push(elem);
1899
+ }
1900
+ }
1901
+ return elts;
1902
+ };
1903
+
1904
+ pp.parseBindingListItem = function (param) {
1905
+ return param;
1906
+ };
1907
+
1908
+ // Parses assignment pattern around given atom if possible.
1909
+
1910
+ pp.parseMaybeDefault = function (startPos, startLoc, left) {
1911
+ if (Array.isArray(startPos)) {
1912
+ if (this.options.locations && noCalls === undefined) {
1913
+ // shift arguments to left by one
1914
+ left = startLoc;
1915
+ // flatten startPos
1916
+ startLoc = startPos[1];
1917
+ startPos = startPos[0];
1918
+ }
1919
+ }
1920
+ left = left || this.parseBindingAtom();
1921
+ if (!this.eat(tt.eq)) return left;
1922
+ var node = this.startNodeAt(startPos, startLoc);
1923
+ node.operator = "=";
1924
+ node.left = left;
1925
+ node.right = this.parseMaybeAssign();
1926
+ return this.finishNode(node, "AssignmentPattern");
1927
+ };
1928
+
1929
+ // Verify that a node is an lval — something that can be assigned
1930
+ // to.
1931
+
1932
+ pp.checkLVal = function (expr, isBinding, checkClashes) {
1933
+ switch (expr.type) {
1934
+ case "Identifier":
1935
+ if (this.strict && (reservedWords.strictBind(expr.name) || reservedWords.strict(expr.name))) this.raise(expr.start, (isBinding ? "Binding " : "Assigning to ") + expr.name + " in strict mode");
1936
+ if (checkClashes) {
1937
+ if (has(checkClashes, expr.name)) this.raise(expr.start, "Argument name clash in strict mode");
1938
+ checkClashes[expr.name] = true;
1939
+ }
1940
+ break;
1941
+
1942
+ case "MemberExpression":
1943
+ if (isBinding) this.raise(expr.start, (isBinding ? "Binding" : "Assigning to") + " member expression");
1944
+ break;
1945
+
1946
+ case "ObjectPattern":
1947
+ for (var i = 0; i < expr.properties.length; i++) {
1948
+ this.checkLVal(expr.properties[i].value, isBinding, checkClashes);
1949
+ }break;
1950
+
1951
+ case "ArrayPattern":
1952
+ for (var i = 0; i < expr.elements.length; i++) {
1953
+ var elem = expr.elements[i];
1954
+ if (elem) this.checkLVal(elem, isBinding, checkClashes);
1955
+ }
1956
+ break;
1957
+
1958
+ case "AssignmentPattern":
1959
+ this.checkLVal(expr.left, isBinding, checkClashes);
1960
+ break;
1961
+
1962
+ case "RestElement":
1963
+ this.checkLVal(expr.argument, isBinding, checkClashes);
1964
+ break;
1965
+
1966
+ case "ParenthesizedExpression":
1967
+ this.checkLVal(expr.expression, isBinding, checkClashes);
1968
+ break;
1969
+
1970
+ default:
1971
+ this.raise(expr.start, (isBinding ? "Binding" : "Assigning to") + " rvalue");
1972
+ }
1973
+ };
1974
+
1975
+ },{"./identifier":7,"./state":13,"./tokentype":17,"./util":18}],10:[function(_dereq_,module,exports){
1976
+ "use strict";
1977
+
1978
+ var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
1979
+
1980
+ exports.__esModule = true;
1981
+
1982
+ var Parser = _dereq_("./state").Parser;
1983
+
1984
+ var SourceLocation = _dereq_("./location").SourceLocation;
1985
+
1986
+ // Start an AST node, attaching a start offset.
1987
+
1988
+ var pp = Parser.prototype;
1989
+
1990
+ var Node = exports.Node = function Node() {
1991
+ _classCallCheck(this, Node);
1992
+ };
1993
+
1994
+ pp.startNode = function () {
1995
+ var node = new Node();
1996
+ node.start = this.start;
1997
+ if (this.options.locations) node.loc = new SourceLocation(this, this.startLoc);
1998
+ if (this.options.directSourceFile) node.sourceFile = this.options.directSourceFile;
1999
+ if (this.options.ranges) node.range = [this.start, 0];
2000
+ return node;
2001
+ };
2002
+
2003
+ pp.startNodeAt = function (pos, loc) {
2004
+ var node = new Node();
2005
+ if (Array.isArray(pos)) {
2006
+ if (this.options.locations && loc === undefined) {
2007
+ // flatten pos
2008
+ loc = pos[1];
2009
+ pos = pos[0];
2010
+ }
2011
+ }
2012
+ node.start = pos;
2013
+ if (this.options.locations) node.loc = new SourceLocation(this, loc);
2014
+ if (this.options.directSourceFile) node.sourceFile = this.options.directSourceFile;
2015
+ if (this.options.ranges) node.range = [pos, 0];
2016
+ return node;
2017
+ };
2018
+
2019
+ // Finish an AST node, adding `type` and `end` properties.
2020
+
2021
+ pp.finishNode = function (node, type) {
2022
+ node.type = type;
2023
+ node.end = this.lastTokEnd;
2024
+ if (this.options.locations) node.loc.end = this.lastTokEndLoc;
2025
+ if (this.options.ranges) node.range[1] = this.lastTokEnd;
2026
+ return node;
2027
+ };
2028
+
2029
+ // Finish node at given position
2030
+
2031
+ pp.finishNodeAt = function (node, type, pos, loc) {
2032
+ node.type = type;
2033
+ if (Array.isArray(pos)) {
2034
+ if (this.options.locations && loc === undefined) {
2035
+ // flatten pos
2036
+ loc = pos[1];
2037
+ pos = pos[0];
2038
+ }
2039
+ }
2040
+ node.end = pos;
2041
+ if (this.options.locations) node.loc.end = loc;
2042
+ if (this.options.ranges) node.range[1] = pos;
2043
+ return node;
2044
+ };
2045
+
2046
+ },{"./location":8,"./state":13}],11:[function(_dereq_,module,exports){
2047
+
2048
+
2049
+ // Interpret and default an options object
2050
+
2051
+ "use strict";
2052
+
2053
+ exports.getOptions = getOptions;
2054
+ exports.__esModule = true;
2055
+
2056
+ var _util = _dereq_("./util");
2057
+
2058
+ var has = _util.has;
2059
+ var isArray = _util.isArray;
2060
+
2061
+ var SourceLocation = _dereq_("./location").SourceLocation;
2062
+
2063
+ // A second optional argument can be given to further configure
2064
+ // the parser process. These options are recognized:
2065
+
2066
+ var defaultOptions = {
2067
+ // `ecmaVersion` indicates the ECMAScript version to parse. Must
2068
+ // be either 3, or 5, or 6. This influences support for strict
2069
+ // mode, the set of reserved words, support for getters and
2070
+ // setters and other features.
2071
+ ecmaVersion: 5,
2072
+ // Source type ("script" or "module") for different semantics
2073
+ sourceType: "script",
2074
+ // `onInsertedSemicolon` can be a callback that will be called
2075
+ // when a semicolon is automatically inserted. It will be passed
2076
+ // th position of the comma as an offset, and if `locations` is
2077
+ // enabled, it is given the location as a `{line, column}` object
2078
+ // as second argument.
2079
+ onInsertedSemicolon: null,
2080
+ // `onTrailingComma` is similar to `onInsertedSemicolon`, but for
2081
+ // trailing commas.
2082
+ onTrailingComma: null,
2083
+ // By default, reserved words are not enforced. Disable
2084
+ // `allowReserved` to enforce them. When this option has the
2085
+ // value "never", reserved words and keywords can also not be
2086
+ // used as property names.
2087
+ allowReserved: true,
2088
+ // When enabled, a return at the top level is not considered an
2089
+ // error.
2090
+ allowReturnOutsideFunction: false,
2091
+ // When enabled, import/export statements are not constrained to
2092
+ // appearing at the top of the program.
2093
+ allowImportExportEverywhere: false,
2094
+ // When enabled, hashbang directive in the beginning of file
2095
+ // is allowed and treated as a line comment.
2096
+ allowHashBang: false,
2097
+ // When `locations` is on, `loc` properties holding objects with
2098
+ // `start` and `end` properties in `{line, column}` form (with
2099
+ // line being 1-based and column 0-based) will be attached to the
2100
+ // nodes.
2101
+ locations: false,
2102
+ // A function can be passed as `onToken` option, which will
2103
+ // cause Acorn to call that function with object in the same
2104
+ // format as tokenize() returns. Note that you are not
2105
+ // allowed to call the parser from the callback—that will
2106
+ // corrupt its internal state.
2107
+ onToken: null,
2108
+ // A function can be passed as `onComment` option, which will
2109
+ // cause Acorn to call that function with `(block, text, start,
2110
+ // end)` parameters whenever a comment is skipped. `block` is a
2111
+ // boolean indicating whether this is a block (`/* */`) comment,
2112
+ // `text` is the content of the comment, and `start` and `end` are
2113
+ // character offsets that denote the start and end of the comment.
2114
+ // When the `locations` option is on, two more parameters are
2115
+ // passed, the full `{line, column}` locations of the start and
2116
+ // end of the comments. Note that you are not allowed to call the
2117
+ // parser from the callback—that will corrupt its internal state.
2118
+ onComment: null,
2119
+ // Nodes have their start and end characters offsets recorded in
2120
+ // `start` and `end` properties (directly on the node, rather than
2121
+ // the `loc` object, which holds line/column data. To also add a
2122
+ // [semi-standardized][range] `range` property holding a `[start,
2123
+ // end]` array with the same numbers, set the `ranges` option to
2124
+ // `true`.
2125
+ //
2126
+ // [range]: https://bugzilla.mozilla.org/show_bug.cgi?id=745678
2127
+ ranges: false,
2128
+ // It is possible to parse multiple files into a single AST by
2129
+ // passing the tree produced by parsing the first file as
2130
+ // `program` option in subsequent parses. This will add the
2131
+ // toplevel forms of the parsed file to the `Program` (top) node
2132
+ // of an existing parse tree.
2133
+ program: null,
2134
+ // When `locations` is on, you can pass this to record the source
2135
+ // file in every node's `loc` object.
2136
+ sourceFile: null,
2137
+ // This value, if given, is stored in every node, whether
2138
+ // `locations` is on or off.
2139
+ directSourceFile: null,
2140
+ // When enabled, parenthesized expressions are represented by
2141
+ // (non-standard) ParenthesizedExpression nodes
2142
+ preserveParens: false,
2143
+ plugins: {}
2144
+ };exports.defaultOptions = defaultOptions;
2145
+
2146
+ function getOptions(opts) {
2147
+ var options = {};
2148
+ for (var opt in defaultOptions) {
2149
+ options[opt] = opts && has(opts, opt) ? opts[opt] : defaultOptions[opt];
2150
+ }if (isArray(options.onToken)) {
2151
+ (function () {
2152
+ var tokens = options.onToken;
2153
+ options.onToken = function (token) {
2154
+ return tokens.push(token);
2155
+ };
2156
+ })();
2157
+ }
2158
+ if (isArray(options.onComment)) options.onComment = pushComment(options, options.onComment);
2159
+
2160
+ return options;
2161
+ }
2162
+
2163
+ function pushComment(options, array) {
2164
+ return function (block, text, start, end, startLoc, endLoc) {
2165
+ var comment = {
2166
+ type: block ? "Block" : "Line",
2167
+ value: text,
2168
+ start: start,
2169
+ end: end
2170
+ };
2171
+ if (options.locations) comment.loc = new SourceLocation(this, startLoc, endLoc);
2172
+ if (options.ranges) comment.range = [start, end];
2173
+ array.push(comment);
2174
+ };
2175
+ }
2176
+
2177
+ },{"./location":8,"./util":18}],12:[function(_dereq_,module,exports){
2178
+ "use strict";
2179
+
2180
+ var tt = _dereq_("./tokentype").types;
2181
+
2182
+ var Parser = _dereq_("./state").Parser;
2183
+
2184
+ var lineBreak = _dereq_("./whitespace").lineBreak;
2185
+
2186
+ var pp = Parser.prototype;
2187
+
2188
+ // ## Parser utilities
2189
+
2190
+ // Test whether a statement node is the string literal `"use strict"`.
2191
+
2192
+ pp.isUseStrict = function (stmt) {
2193
+ return this.options.ecmaVersion >= 5 && stmt.type === "ExpressionStatement" && stmt.expression.type === "Literal" && stmt.expression.value === "use strict";
2194
+ };
2195
+
2196
+ // Predicate that tests whether the next token is of the given
2197
+ // type, and if yes, consumes it as a side effect.
2198
+
2199
+ pp.eat = function (type) {
2200
+ if (this.type === type) {
2201
+ this.next();
2202
+ return true;
2203
+ } else {
2204
+ return false;
2205
+ }
2206
+ };
2207
+
2208
+ // Tests whether parsed token is a contextual keyword.
2209
+
2210
+ pp.isContextual = function (name) {
2211
+ return this.type === tt.name && this.value === name;
2212
+ };
2213
+
2214
+ // Consumes contextual keyword if possible.
2215
+
2216
+ pp.eatContextual = function (name) {
2217
+ return this.value === name && this.eat(tt.name);
2218
+ };
2219
+
2220
+ // Asserts that following token is given contextual keyword.
2221
+
2222
+ pp.expectContextual = function (name) {
2223
+ if (!this.eatContextual(name)) this.unexpected();
2224
+ };
2225
+
2226
+ // Test whether a semicolon can be inserted at the current position.
2227
+
2228
+ pp.canInsertSemicolon = function () {
2229
+ return this.type === tt.eof || this.type === tt.braceR || lineBreak.test(this.input.slice(this.lastTokEnd, this.start));
2230
+ };
2231
+
2232
+ pp.insertSemicolon = function () {
2233
+ if (this.canInsertSemicolon()) {
2234
+ if (this.options.onInsertedSemicolon) this.options.onInsertedSemicolon(this.lastTokEnd, this.lastTokEndLoc);
2235
+ return true;
2236
+ }
2237
+ };
2238
+
2239
+ // Consume a semicolon, or, failing that, see if we are allowed to
2240
+ // pretend that there is a semicolon at this position.
2241
+
2242
+ pp.semicolon = function () {
2243
+ if (!this.eat(tt.semi) && !this.insertSemicolon()) this.unexpected();
2244
+ };
2245
+
2246
+ pp.afterTrailingComma = function (tokType) {
2247
+ if (this.type == tokType) {
2248
+ if (this.options.onTrailingComma) this.options.onTrailingComma(this.lastTokStart, this.lastTokStartLoc);
2249
+ this.next();
2250
+ return true;
2251
+ }
2252
+ };
2253
+
2254
+ // Expect a token of a given type. If found, consume it, otherwise,
2255
+ // raise an unexpected token error.
2256
+
2257
+ pp.expect = function (type) {
2258
+ this.eat(type) || this.unexpected();
2259
+ };
2260
+
2261
+ // Raise an unexpected token error.
2262
+
2263
+ pp.unexpected = function (pos) {
2264
+ this.raise(pos != null ? pos : this.start, "Unexpected token");
2265
+ };
2266
+
2267
+ },{"./state":13,"./tokentype":17,"./whitespace":19}],13:[function(_dereq_,module,exports){
2268
+ "use strict";
2269
+
2270
+ exports.Parser = Parser;
2271
+ exports.__esModule = true;
2272
+
2273
+ var _identifier = _dereq_("./identifier");
2274
+
2275
+ var reservedWords = _identifier.reservedWords;
2276
+ var keywords = _identifier.keywords;
2277
+
2278
+ var tt = _dereq_("./tokentype").types;
2279
+
2280
+ var lineBreak = _dereq_("./whitespace").lineBreak;
2281
+
2282
+ function Parser(options, input, startPos) {
2283
+ this.options = options;
2284
+ this.sourceFile = this.options.sourceFile || null;
2285
+ this.isKeyword = keywords[this.options.ecmaVersion >= 6 ? 6 : 5];
2286
+ this.isReservedWord = reservedWords[this.options.ecmaVersion];
2287
+ this.input = input;
2288
+
2289
+ // Load plugins
2290
+ this.loadPlugins(this.options.plugins);
2291
+
2292
+ // Set up token state
2293
+
2294
+ // The current position of the tokenizer in the input.
2295
+ if (startPos) {
2296
+ this.pos = startPos;
2297
+ this.lineStart = Math.max(0, this.input.lastIndexOf("\n", startPos));
2298
+ this.curLine = this.input.slice(0, this.lineStart).split(lineBreak).length;
2299
+ } else {
2300
+ this.pos = this.lineStart = 0;
2301
+ this.curLine = 1;
2302
+ }
2303
+
2304
+ // Properties of the current token:
2305
+ // Its type
2306
+ this.type = tt.eof;
2307
+ // For tokens that include more information than their type, the value
2308
+ this.value = null;
2309
+ // Its start and end offset
2310
+ this.start = this.end = this.pos;
2311
+ // And, if locations are used, the {line, column} object
2312
+ // corresponding to those offsets
2313
+ this.startLoc = this.endLoc = null;
2314
+
2315
+ // Position information for the previous token
2316
+ this.lastTokEndLoc = this.lastTokStartLoc = null;
2317
+ this.lastTokStart = this.lastTokEnd = this.pos;
2318
+
2319
+ // The context stack is used to superficially track syntactic
2320
+ // context to predict whether a regular expression is allowed in a
2321
+ // given position.
2322
+ this.context = this.initialContext();
2323
+ this.exprAllowed = true;
2324
+
2325
+ // Figure out if it's a module code.
2326
+ this.strict = this.inModule = this.options.sourceType === "module";
2327
+
2328
+ // Used to signify the start of a potential arrow function
2329
+ this.potentialArrowAt = -1;
2330
+
2331
+ // Flags to track whether we are in a function, a generator.
2332
+ this.inFunction = this.inGenerator = false;
2333
+ // Labels in scope.
2334
+ this.labels = [];
2335
+
2336
+ // If enabled, skip leading hashbang line.
2337
+ if (this.pos === 0 && this.options.allowHashBang && this.input.slice(0, 2) === "#!") this.skipLineComment(2);
2338
+ }
2339
+
2340
+ Parser.prototype.extend = function (name, f) {
2341
+ this[name] = f(this[name]);
2342
+ };
2343
+
2344
+ // Registered plugins
2345
+
2346
+ var plugins = {};
2347
+
2348
+ exports.plugins = plugins;
2349
+ Parser.prototype.loadPlugins = function (plugins) {
2350
+ for (var _name in plugins) {
2351
+ var plugin = exports.plugins[_name];
2352
+ if (!plugin) throw new Error("Plugin '" + _name + "' not found");
2353
+ plugin(this, plugins[_name]);
2354
+ }
2355
+ };
2356
+
2357
+ },{"./identifier":7,"./tokentype":17,"./whitespace":19}],14:[function(_dereq_,module,exports){
2358
+ "use strict";
2359
+
2360
+ var tt = _dereq_("./tokentype").types;
2361
+
2362
+ var Parser = _dereq_("./state").Parser;
2363
+
2364
+ var lineBreak = _dereq_("./whitespace").lineBreak;
2365
+
2366
+ var pp = Parser.prototype;
2367
+
2368
+ // ### Statement parsing
2369
+
2370
+ // Parse a program. Initializes the parser, reads any number of
2371
+ // statements, and wraps them in a Program node. Optionally takes a
2372
+ // `program` argument. If present, the statements will be appended
2373
+ // to its body instead of creating a new node.
2374
+
2375
+ pp.parseTopLevel = function (node) {
2376
+ var first = true;
2377
+ if (!node.body) node.body = [];
2378
+ while (this.type !== tt.eof) {
2379
+ var stmt = this.parseStatement(true, true);
2380
+ node.body.push(stmt);
2381
+ if (first && this.isUseStrict(stmt)) this.setStrict(true);
2382
+ first = false;
2383
+ }
2384
+ this.next();
2385
+ if (this.options.ecmaVersion >= 6) {
2386
+ node.sourceType = this.options.sourceType;
2387
+ }
2388
+ return this.finishNode(node, "Program");
2389
+ };
2390
+
2391
+ var loopLabel = { kind: "loop" },
2392
+ switchLabel = { kind: "switch" };
2393
+
2394
+ // Parse a single statement.
2395
+ //
2396
+ // If expecting a statement and finding a slash operator, parse a
2397
+ // regular expression literal. This is to handle cases like
2398
+ // `if (foo) /blah/.exec(foo)`, where looking at the previous token
2399
+ // does not help.
2400
+
2401
+ pp.parseStatement = function (declaration, topLevel) {
2402
+ var starttype = this.type,
2403
+ node = this.startNode();
2404
+
2405
+ // Most types of statements are recognized by the keyword they
2406
+ // start with. Many are trivial to parse, some require a bit of
2407
+ // complexity.
2408
+
2409
+ switch (starttype) {
2410
+ case tt._break:case tt._continue:
2411
+ return this.parseBreakContinueStatement(node, starttype.keyword);
2412
+ case tt._debugger:
2413
+ return this.parseDebuggerStatement(node);
2414
+ case tt._do:
2415
+ return this.parseDoStatement(node);
2416
+ case tt._for:
2417
+ return this.parseForStatement(node);
2418
+ case tt._function:
2419
+ if (!declaration && this.options.ecmaVersion >= 6) this.unexpected();
2420
+ return this.parseFunctionStatement(node);
2421
+ case tt._class:
2422
+ if (!declaration) this.unexpected();
2423
+ return this.parseClass(node, true);
2424
+ case tt._if:
2425
+ return this.parseIfStatement(node);
2426
+ case tt._return:
2427
+ return this.parseReturnStatement(node);
2428
+ case tt._switch:
2429
+ return this.parseSwitchStatement(node);
2430
+ case tt._throw:
2431
+ return this.parseThrowStatement(node);
2432
+ case tt._try:
2433
+ return this.parseTryStatement(node);
2434
+ case tt._let:case tt._const:
2435
+ if (!declaration) this.unexpected(); // NOTE: falls through to _var
2436
+ case tt._var:
2437
+ return this.parseVarStatement(node, starttype);
2438
+ case tt._while:
2439
+ return this.parseWhileStatement(node);
2440
+ case tt._with:
2441
+ return this.parseWithStatement(node);
2442
+ case tt.braceL:
2443
+ return this.parseBlock();
2444
+ case tt.semi:
2445
+ return this.parseEmptyStatement(node);
2446
+ case tt._export:
2447
+ case tt._import:
2448
+ if (!this.options.allowImportExportEverywhere) {
2449
+ if (!topLevel) this.raise(this.start, "'import' and 'export' may only appear at the top level");
2450
+ if (!this.inModule) this.raise(this.start, "'import' and 'export' may appear only with 'sourceType: module'");
2451
+ }
2452
+ return starttype === tt._import ? this.parseImport(node) : this.parseExport(node);
2453
+
2454
+ // If the statement does not start with a statement keyword or a
2455
+ // brace, it's an ExpressionStatement or LabeledStatement. We
2456
+ // simply start parsing an expression, and afterwards, if the
2457
+ // next token is a colon and the expression was a simple
2458
+ // Identifier node, we switch to interpreting it as a label.
2459
+ default:
2460
+ var maybeName = this.value,
2461
+ expr = this.parseExpression();
2462
+ if (starttype === tt.name && expr.type === "Identifier" && this.eat(tt.colon)) return this.parseLabeledStatement(node, maybeName, expr);else return this.parseExpressionStatement(node, expr);
2463
+ }
2464
+ };
2465
+
2466
+ pp.parseBreakContinueStatement = function (node, keyword) {
2467
+ var isBreak = keyword == "break";
2468
+ this.next();
2469
+ if (this.eat(tt.semi) || this.insertSemicolon()) node.label = null;else if (this.type !== tt.name) this.unexpected();else {
2470
+ node.label = this.parseIdent();
2471
+ this.semicolon();
2472
+ }
2473
+
2474
+ // Verify that there is an actual destination to break or
2475
+ // continue to.
2476
+ for (var i = 0; i < this.labels.length; ++i) {
2477
+ var lab = this.labels[i];
2478
+ if (node.label == null || lab.name === node.label.name) {
2479
+ if (lab.kind != null && (isBreak || lab.kind === "loop")) break;
2480
+ if (node.label && isBreak) break;
2481
+ }
2482
+ }
2483
+ if (i === this.labels.length) this.raise(node.start, "Unsyntactic " + keyword);
2484
+ return this.finishNode(node, isBreak ? "BreakStatement" : "ContinueStatement");
2485
+ };
2486
+
2487
+ pp.parseDebuggerStatement = function (node) {
2488
+ this.next();
2489
+ this.semicolon();
2490
+ return this.finishNode(node, "DebuggerStatement");
2491
+ };
2492
+
2493
+ pp.parseDoStatement = function (node) {
2494
+ this.next();
2495
+ this.labels.push(loopLabel);
2496
+ node.body = this.parseStatement(false);
2497
+ this.labels.pop();
2498
+ this.expect(tt._while);
2499
+ node.test = this.parseParenExpression();
2500
+ if (this.options.ecmaVersion >= 6) this.eat(tt.semi);else this.semicolon();
2501
+ return this.finishNode(node, "DoWhileStatement");
2502
+ };
2503
+
2504
+ // Disambiguating between a `for` and a `for`/`in` or `for`/`of`
2505
+ // loop is non-trivial. Basically, we have to parse the init `var`
2506
+ // statement or expression, disallowing the `in` operator (see
2507
+ // the second parameter to `parseExpression`), and then check
2508
+ // whether the next token is `in` or `of`. When there is no init
2509
+ // part (semicolon immediately after the opening parenthesis), it
2510
+ // is a regular `for` loop.
2511
+
2512
+ pp.parseForStatement = function (node) {
2513
+ this.next();
2514
+ this.labels.push(loopLabel);
2515
+ this.expect(tt.parenL);
2516
+ if (this.type === tt.semi) return this.parseFor(node, null);
2517
+ if (this.type === tt._var || this.type === tt._let || this.type === tt._const) {
2518
+ var _init = this.startNode(),
2519
+ varKind = this.type;
2520
+ this.next();
2521
+ this.parseVar(_init, true, varKind);
2522
+ this.finishNode(_init, "VariableDeclaration");
2523
+ if ((this.type === tt._in || this.options.ecmaVersion >= 6 && this.isContextual("of")) && _init.declarations.length === 1 && !(varKind !== tt._var && _init.declarations[0].init)) return this.parseForIn(node, _init);
2524
+ return this.parseFor(node, _init);
2525
+ }
2526
+ var refShorthandDefaultPos = { start: 0 };
2527
+ var init = this.parseExpression(true, refShorthandDefaultPos);
2528
+ if (this.type === tt._in || this.options.ecmaVersion >= 6 && this.isContextual("of")) {
2529
+ this.toAssignable(init);
2530
+ this.checkLVal(init);
2531
+ return this.parseForIn(node, init);
2532
+ } else if (refShorthandDefaultPos.start) {
2533
+ this.unexpected(refShorthandDefaultPos.start);
2534
+ }
2535
+ return this.parseFor(node, init);
2536
+ };
2537
+
2538
+ pp.parseFunctionStatement = function (node) {
2539
+ this.next();
2540
+ return this.parseFunction(node, true);
2541
+ };
2542
+
2543
+ pp.parseIfStatement = function (node) {
2544
+ this.next();
2545
+ node.test = this.parseParenExpression();
2546
+ node.consequent = this.parseStatement(false);
2547
+ node.alternate = this.eat(tt._else) ? this.parseStatement(false) : null;
2548
+ return this.finishNode(node, "IfStatement");
2549
+ };
2550
+
2551
+ pp.parseReturnStatement = function (node) {
2552
+ if (!this.inFunction && !this.options.allowReturnOutsideFunction) this.raise(this.start, "'return' outside of function");
2553
+ this.next();
2554
+
2555
+ // In `return` (and `break`/`continue`), the keywords with
2556
+ // optional arguments, we eagerly look for a semicolon or the
2557
+ // possibility to insert one.
2558
+
2559
+ if (this.eat(tt.semi) || this.insertSemicolon()) node.argument = null;else {
2560
+ node.argument = this.parseExpression();this.semicolon();
2561
+ }
2562
+ return this.finishNode(node, "ReturnStatement");
2563
+ };
2564
+
2565
+ pp.parseSwitchStatement = function (node) {
2566
+ this.next();
2567
+ node.discriminant = this.parseParenExpression();
2568
+ node.cases = [];
2569
+ this.expect(tt.braceL);
2570
+ this.labels.push(switchLabel);
2571
+
2572
+ // Statements under must be grouped (by label) in SwitchCase
2573
+ // nodes. `cur` is used to keep the node that we are currently
2574
+ // adding statements to.
2575
+
2576
+ for (var cur, sawDefault; this.type != tt.braceR;) {
2577
+ if (this.type === tt._case || this.type === tt._default) {
2578
+ var isCase = this.type === tt._case;
2579
+ if (cur) this.finishNode(cur, "SwitchCase");
2580
+ node.cases.push(cur = this.startNode());
2581
+ cur.consequent = [];
2582
+ this.next();
2583
+ if (isCase) {
2584
+ cur.test = this.parseExpression();
2585
+ } else {
2586
+ if (sawDefault) this.raise(this.lastTokStart, "Multiple default clauses");
2587
+ sawDefault = true;
2588
+ cur.test = null;
2589
+ }
2590
+ this.expect(tt.colon);
2591
+ } else {
2592
+ if (!cur) this.unexpected();
2593
+ cur.consequent.push(this.parseStatement(true));
2594
+ }
2595
+ }
2596
+ if (cur) this.finishNode(cur, "SwitchCase");
2597
+ this.next(); // Closing brace
2598
+ this.labels.pop();
2599
+ return this.finishNode(node, "SwitchStatement");
2600
+ };
2601
+
2602
+ pp.parseThrowStatement = function (node) {
2603
+ this.next();
2604
+ if (lineBreak.test(this.input.slice(this.lastTokEnd, this.start))) this.raise(this.lastTokEnd, "Illegal newline after throw");
2605
+ node.argument = this.parseExpression();
2606
+ this.semicolon();
2607
+ return this.finishNode(node, "ThrowStatement");
2608
+ };
2609
+
2610
+ // Reused empty array added for node fields that are always empty.
2611
+
2612
+ var empty = [];
2613
+
2614
+ pp.parseTryStatement = function (node) {
2615
+ this.next();
2616
+ node.block = this.parseBlock();
2617
+ node.handler = null;
2618
+ if (this.type === tt._catch) {
2619
+ var clause = this.startNode();
2620
+ this.next();
2621
+ this.expect(tt.parenL);
2622
+ clause.param = this.parseBindingAtom();
2623
+ this.checkLVal(clause.param, true);
2624
+ this.expect(tt.parenR);
2625
+ clause.guard = null;
2626
+ clause.body = this.parseBlock();
2627
+ node.handler = this.finishNode(clause, "CatchClause");
2628
+ }
2629
+ node.guardedHandlers = empty;
2630
+ node.finalizer = this.eat(tt._finally) ? this.parseBlock() : null;
2631
+ if (!node.handler && !node.finalizer) this.raise(node.start, "Missing catch or finally clause");
2632
+ return this.finishNode(node, "TryStatement");
2633
+ };
2634
+
2635
+ pp.parseVarStatement = function (node, kind) {
2636
+ this.next();
2637
+ this.parseVar(node, false, kind);
2638
+ this.semicolon();
2639
+ return this.finishNode(node, "VariableDeclaration");
2640
+ };
2641
+
2642
+ pp.parseWhileStatement = function (node) {
2643
+ this.next();
2644
+ node.test = this.parseParenExpression();
2645
+ this.labels.push(loopLabel);
2646
+ node.body = this.parseStatement(false);
2647
+ this.labels.pop();
2648
+ return this.finishNode(node, "WhileStatement");
2649
+ };
2650
+
2651
+ pp.parseWithStatement = function (node) {
2652
+ if (this.strict) this.raise(this.start, "'with' in strict mode");
2653
+ this.next();
2654
+ node.object = this.parseParenExpression();
2655
+ node.body = this.parseStatement(false);
2656
+ return this.finishNode(node, "WithStatement");
2657
+ };
2658
+
2659
+ pp.parseEmptyStatement = function (node) {
2660
+ this.next();
2661
+ return this.finishNode(node, "EmptyStatement");
2662
+ };
2663
+
2664
+ pp.parseLabeledStatement = function (node, maybeName, expr) {
2665
+ for (var i = 0; i < this.labels.length; ++i) {
2666
+ if (this.labels[i].name === maybeName) this.raise(expr.start, "Label '" + maybeName + "' is already declared");
2667
+ }var kind = this.type.isLoop ? "loop" : this.type === tt._switch ? "switch" : null;
2668
+ this.labels.push({ name: maybeName, kind: kind });
2669
+ node.body = this.parseStatement(true);
2670
+ this.labels.pop();
2671
+ node.label = expr;
2672
+ return this.finishNode(node, "LabeledStatement");
2673
+ };
2674
+
2675
+ pp.parseExpressionStatement = function (node, expr) {
2676
+ node.expression = expr;
2677
+ this.semicolon();
2678
+ return this.finishNode(node, "ExpressionStatement");
2679
+ };
2680
+
2681
+ // Parse a semicolon-enclosed block of statements, handling `"use
2682
+ // strict"` declarations when `allowStrict` is true (used for
2683
+ // function bodies).
2684
+
2685
+ pp.parseBlock = function (allowStrict) {
2686
+ var node = this.startNode(),
2687
+ first = true,
2688
+ oldStrict = undefined;
2689
+ node.body = [];
2690
+ this.expect(tt.braceL);
2691
+ while (!this.eat(tt.braceR)) {
2692
+ var stmt = this.parseStatement(true);
2693
+ node.body.push(stmt);
2694
+ if (first && allowStrict && this.isUseStrict(stmt)) {
2695
+ oldStrict = this.strict;
2696
+ this.setStrict(this.strict = true);
2697
+ }
2698
+ first = false;
2699
+ }
2700
+ if (oldStrict === false) this.setStrict(false);
2701
+ return this.finishNode(node, "BlockStatement");
2702
+ };
2703
+
2704
+ // Parse a regular `for` loop. The disambiguation code in
2705
+ // `parseStatement` will already have parsed the init statement or
2706
+ // expression.
2707
+
2708
+ pp.parseFor = function (node, init) {
2709
+ node.init = init;
2710
+ this.expect(tt.semi);
2711
+ node.test = this.type === tt.semi ? null : this.parseExpression();
2712
+ this.expect(tt.semi);
2713
+ node.update = this.type === tt.parenR ? null : this.parseExpression();
2714
+ this.expect(tt.parenR);
2715
+ node.body = this.parseStatement(false);
2716
+ this.labels.pop();
2717
+ return this.finishNode(node, "ForStatement");
2718
+ };
2719
+
2720
+ // Parse a `for`/`in` and `for`/`of` loop, which are almost
2721
+ // same from parser's perspective.
2722
+
2723
+ pp.parseForIn = function (node, init) {
2724
+ var type = this.type === tt._in ? "ForInStatement" : "ForOfStatement";
2725
+ this.next();
2726
+ node.left = init;
2727
+ node.right = this.parseExpression();
2728
+ this.expect(tt.parenR);
2729
+ node.body = this.parseStatement(false);
2730
+ this.labels.pop();
2731
+ return this.finishNode(node, type);
2732
+ };
2733
+
2734
+ // Parse a list of variable declarations.
2735
+
2736
+ pp.parseVar = function (node, isFor, kind) {
2737
+ node.declarations = [];
2738
+ node.kind = kind.keyword;
2739
+ for (;;) {
2740
+ var decl = this.startNode();
2741
+ this.parseVarId(decl);
2742
+ if (this.eat(tt.eq)) {
2743
+ decl.init = this.parseMaybeAssign(isFor);
2744
+ } else if (kind === tt._const && !(this.type === tt._in || this.options.ecmaVersion >= 6 && this.isContextual("of"))) {
2745
+ this.unexpected();
2746
+ } else if (decl.id.type != "Identifier" && !(isFor && (this.type === tt._in || this.isContextual("of")))) {
2747
+ this.raise(this.lastTokEnd, "Complex binding patterns require an initialization value");
2748
+ } else {
2749
+ decl.init = null;
2750
+ }
2751
+ node.declarations.push(this.finishNode(decl, "VariableDeclarator"));
2752
+ if (!this.eat(tt.comma)) break;
2753
+ }
2754
+ return node;
2755
+ };
2756
+
2757
+ pp.parseVarId = function (decl) {
2758
+ decl.id = this.parseBindingAtom();
2759
+ this.checkLVal(decl.id, true);
2760
+ };
2761
+
2762
+ // Parse a function declaration or literal (depending on the
2763
+ // `isStatement` parameter).
2764
+
2765
+ pp.parseFunction = function (node, isStatement, allowExpressionBody) {
2766
+ this.initFunction(node);
2767
+ if (this.options.ecmaVersion >= 6) node.generator = this.eat(tt.star);
2768
+ if (isStatement || this.type === tt.name) node.id = this.parseIdent();
2769
+ this.parseFunctionParams(node);
2770
+ this.parseFunctionBody(node, allowExpressionBody);
2771
+ return this.finishNode(node, isStatement ? "FunctionDeclaration" : "FunctionExpression");
2772
+ };
2773
+
2774
+ pp.parseFunctionParams = function (node) {
2775
+ this.expect(tt.parenL);
2776
+ node.params = this.parseBindingList(tt.parenR, false, false);
2777
+ };
2778
+
2779
+ // Parse a class declaration or literal (depending on the
2780
+ // `isStatement` parameter).
2781
+
2782
+ pp.parseClass = function (node, isStatement) {
2783
+ this.next();
2784
+ this.parseClassId(node, isStatement);
2785
+ this.parseClassSuper(node);
2786
+ var classBody = this.startNode();
2787
+ var hadConstructor = false;
2788
+ classBody.body = [];
2789
+ this.expect(tt.braceL);
2790
+ while (!this.eat(tt.braceR)) {
2791
+ if (this.eat(tt.semi)) continue;
2792
+ var method = this.startNode();
2793
+ var isGenerator = this.eat(tt.star);
2794
+ var isMaybeStatic = this.type === tt.name && this.value === "static";
2795
+ this.parsePropertyName(method);
2796
+ method["static"] = isMaybeStatic && this.type !== tt.parenL;
2797
+ if (method["static"]) {
2798
+ if (isGenerator) this.unexpected();
2799
+ isGenerator = this.eat(tt.star);
2800
+ this.parsePropertyName(method);
2801
+ }
2802
+ method.kind = "method";
2803
+ if (!method.computed) {
2804
+ var key = method.key;
2805
+
2806
+ var isGetSet = false;
2807
+ if (!isGenerator && key.type === "Identifier" && this.type !== tt.parenL && (key.name === "get" || key.name === "set")) {
2808
+ isGetSet = true;
2809
+ method.kind = key.name;
2810
+ key = this.parsePropertyName(method);
2811
+ }
2812
+ if (!method["static"] && (key.type === "Identifier" && key.name === "constructor" || key.type === "Literal" && key.value === "constructor")) {
2813
+ if (hadConstructor) this.raise(key.start, "Duplicate constructor in the same class");
2814
+ if (isGetSet) this.raise(key.start, "Constructor can't have get/set modifier");
2815
+ if (isGenerator) this.raise(key.start, "Constructor can't be a generator");
2816
+ method.kind = "constructor";
2817
+ hadConstructor = true;
2818
+ }
2819
+ }
2820
+ this.parseClassMethod(classBody, method, isGenerator);
2821
+ }
2822
+ node.body = this.finishNode(classBody, "ClassBody");
2823
+ return this.finishNode(node, isStatement ? "ClassDeclaration" : "ClassExpression");
2824
+ };
2825
+
2826
+ pp.parseClassMethod = function (classBody, method, isGenerator) {
2827
+ method.value = this.parseMethod(isGenerator);
2828
+ classBody.body.push(this.finishNode(method, "MethodDefinition"));
2829
+ };
2830
+
2831
+ pp.parseClassId = function (node, isStatement) {
2832
+ node.id = this.type === tt.name ? this.parseIdent() : isStatement ? this.unexpected() : null;
2833
+ };
2834
+
2835
+ pp.parseClassSuper = function (node) {
2836
+ node.superClass = this.eat(tt._extends) ? this.parseExprSubscripts() : null;
2837
+ };
2838
+
2839
+ // Parses module export declaration.
2840
+
2841
+ pp.parseExport = function (node) {
2842
+ this.next();
2843
+ // export * from '...'
2844
+ if (this.eat(tt.star)) {
2845
+ this.expectContextual("from");
2846
+ node.source = this.type === tt.string ? this.parseExprAtom() : this.unexpected();
2847
+ this.semicolon();
2848
+ return this.finishNode(node, "ExportAllDeclaration");
2849
+ }
2850
+ if (this.eat(tt._default)) {
2851
+ // export default ...
2852
+ var expr = this.parseMaybeAssign();
2853
+ var needsSemi = true;
2854
+ if (expr.type == "FunctionExpression" || expr.type == "ClassExpression") {
2855
+ needsSemi = false;
2856
+ if (expr.id) {
2857
+ expr.type = expr.type == "FunctionExpression" ? "FunctionDeclaration" : "ClassDeclaration";
2858
+ }
2859
+ }
2860
+ node.declaration = expr;
2861
+ if (needsSemi) this.semicolon();
2862
+ return this.finishNode(node, "ExportDefaultDeclaration");
2863
+ }
2864
+ // export var|const|let|function|class ...
2865
+ if (this.shouldParseExportStatement()) {
2866
+ node.declaration = this.parseStatement(true);
2867
+ node.specifiers = [];
2868
+ node.source = null;
2869
+ } else {
2870
+ // export { x, y as z } [from '...']
2871
+ node.declaration = null;
2872
+ node.specifiers = this.parseExportSpecifiers();
2873
+ if (this.eatContextual("from")) {
2874
+ node.source = this.type === tt.string ? this.parseExprAtom() : this.unexpected();
2875
+ } else {
2876
+ node.source = null;
2877
+ }
2878
+ this.semicolon();
2879
+ }
2880
+ return this.finishNode(node, "ExportNamedDeclaration");
2881
+ };
2882
+
2883
+ pp.shouldParseExportStatement = function () {
2884
+ return this.type.keyword;
2885
+ };
2886
+
2887
+ // Parses a comma-separated list of module exports.
2888
+
2889
+ pp.parseExportSpecifiers = function () {
2890
+ var nodes = [],
2891
+ first = true;
2892
+ // export { x, y as z } [from '...']
2893
+ this.expect(tt.braceL);
2894
+ while (!this.eat(tt.braceR)) {
2895
+ if (!first) {
2896
+ this.expect(tt.comma);
2897
+ if (this.afterTrailingComma(tt.braceR)) break;
2898
+ } else first = false;
2899
+
2900
+ var node = this.startNode();
2901
+ node.local = this.parseIdent(this.type === tt._default);
2902
+ node.exported = this.eatContextual("as") ? this.parseIdent(true) : node.local;
2903
+ nodes.push(this.finishNode(node, "ExportSpecifier"));
2904
+ }
2905
+ return nodes;
2906
+ };
2907
+
2908
+ // Parses import declaration.
2909
+
2910
+ pp.parseImport = function (node) {
2911
+ this.next();
2912
+ // import '...'
2913
+ if (this.type === tt.string) {
2914
+ node.specifiers = empty;
2915
+ node.source = this.parseExprAtom();
2916
+ node.kind = "";
2917
+ } else {
2918
+ node.specifiers = this.parseImportSpecifiers();
2919
+ this.expectContextual("from");
2920
+ node.source = this.type === tt.string ? this.parseExprAtom() : this.unexpected();
2921
+ }
2922
+ this.semicolon();
2923
+ return this.finishNode(node, "ImportDeclaration");
2924
+ };
2925
+
2926
+ // Parses a comma-separated list of module imports.
2927
+
2928
+ pp.parseImportSpecifiers = function () {
2929
+ var nodes = [],
2930
+ first = true;
2931
+ if (this.type === tt.name) {
2932
+ // import defaultObj, { x, y as z } from '...'
2933
+ var node = this.startNode();
2934
+ node.local = this.parseIdent();
2935
+ this.checkLVal(node.local, true);
2936
+ nodes.push(this.finishNode(node, "ImportDefaultSpecifier"));
2937
+ if (!this.eat(tt.comma)) return nodes;
2938
+ }
2939
+ if (this.type === tt.star) {
2940
+ var node = this.startNode();
2941
+ this.next();
2942
+ this.expectContextual("as");
2943
+ node.local = this.parseIdent();
2944
+ this.checkLVal(node.local, true);
2945
+ nodes.push(this.finishNode(node, "ImportNamespaceSpecifier"));
2946
+ return nodes;
2947
+ }
2948
+ this.expect(tt.braceL);
2949
+ while (!this.eat(tt.braceR)) {
2950
+ if (!first) {
2951
+ this.expect(tt.comma);
2952
+ if (this.afterTrailingComma(tt.braceR)) break;
2953
+ } else first = false;
2954
+
2955
+ var node = this.startNode();
2956
+ node.imported = this.parseIdent(true);
2957
+ node.local = this.eatContextual("as") ? this.parseIdent() : node.imported;
2958
+ this.checkLVal(node.local, true);
2959
+ nodes.push(this.finishNode(node, "ImportSpecifier"));
2960
+ }
2961
+ return nodes;
2962
+ };
2963
+
2964
+ },{"./state":13,"./tokentype":17,"./whitespace":19}],15:[function(_dereq_,module,exports){
2965
+ "use strict";
2966
+
2967
+ var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
2968
+
2969
+ exports.__esModule = true;
2970
+ // The algorithm used to determine whether a regexp can appear at a
2971
+ // given point in the program is loosely based on sweet.js' approach.
2972
+ // See https://github.com/mozilla/sweet.js/wiki/design
2973
+
2974
+ var Parser = _dereq_("./state").Parser;
2975
+
2976
+ var tt = _dereq_("./tokentype").types;
2977
+
2978
+ var lineBreak = _dereq_("./whitespace").lineBreak;
2979
+
2980
+ var TokContext = exports.TokContext = function TokContext(token, isExpr, preserveSpace, override) {
2981
+ _classCallCheck(this, TokContext);
2982
+
2983
+ this.token = token;
2984
+ this.isExpr = isExpr;
2985
+ this.preserveSpace = preserveSpace;
2986
+ this.override = override;
2987
+ };
2988
+
2989
+ var types = {
2990
+ b_stat: new TokContext("{", false),
2991
+ b_expr: new TokContext("{", true),
2992
+ b_tmpl: new TokContext("${", true),
2993
+ p_stat: new TokContext("(", false),
2994
+ p_expr: new TokContext("(", true),
2995
+ q_tmpl: new TokContext("`", true, true, function (p) {
2996
+ return p.readTmplToken();
2997
+ }),
2998
+ f_expr: new TokContext("function", true)
2999
+ };
3000
+
3001
+ exports.types = types;
3002
+ var pp = Parser.prototype;
3003
+
3004
+ pp.initialContext = function () {
3005
+ return [types.b_stat];
3006
+ };
3007
+
3008
+ pp.braceIsBlock = function (prevType) {
3009
+ var parent = undefined;
3010
+ if (prevType === tt.colon && (parent = this.curContext()).token == "{") return !parent.isExpr;
3011
+ if (prevType === tt._return) return lineBreak.test(this.input.slice(this.lastTokEnd, this.start));
3012
+ if (prevType === tt._else || prevType === tt.semi || prevType === tt.eof) return true;
3013
+ if (prevType == tt.braceL) return this.curContext() === types.b_stat;
3014
+ return !this.exprAllowed;
3015
+ };
3016
+
3017
+ pp.updateContext = function (prevType) {
3018
+ var update = undefined,
3019
+ type = this.type;
3020
+ if (type.keyword && prevType == tt.dot) this.exprAllowed = false;else if (update = type.updateContext) update.call(this, prevType);else this.exprAllowed = type.beforeExpr;
3021
+ };
3022
+
3023
+ // Token-specific context update code
3024
+
3025
+ tt.parenR.updateContext = tt.braceR.updateContext = function () {
3026
+ if (this.context.length == 1) {
3027
+ this.exprAllowed = true;
3028
+ return;
3029
+ }
3030
+ var out = this.context.pop();
3031
+ if (out === types.b_stat && this.curContext() === types.f_expr) {
3032
+ this.context.pop();
3033
+ this.exprAllowed = false;
3034
+ } else if (out === types.b_tmpl) {
3035
+ this.exprAllowed = true;
3036
+ } else {
3037
+ this.exprAllowed = !out.isExpr;
3038
+ }
3039
+ };
3040
+
3041
+ tt.braceL.updateContext = function (prevType) {
3042
+ this.context.push(this.braceIsBlock(prevType) ? types.b_stat : types.b_expr);
3043
+ this.exprAllowed = true;
3044
+ };
3045
+
3046
+ tt.dollarBraceL.updateContext = function () {
3047
+ this.context.push(types.b_tmpl);
3048
+ this.exprAllowed = true;
3049
+ };
3050
+
3051
+ tt.parenL.updateContext = function (prevType) {
3052
+ var statementParens = prevType === tt._if || prevType === tt._for || prevType === tt._with || prevType === tt._while;
3053
+ this.context.push(statementParens ? types.p_stat : types.p_expr);
3054
+ this.exprAllowed = true;
3055
+ };
3056
+
3057
+ tt.incDec.updateContext = function () {};
3058
+
3059
+ tt._function.updateContext = function () {
3060
+ if (this.curContext() !== types.b_stat) this.context.push(types.f_expr);
3061
+ this.exprAllowed = false;
3062
+ };
3063
+
3064
+ tt.backQuote.updateContext = function () {
3065
+ if (this.curContext() === types.q_tmpl) this.context.pop();else this.context.push(types.q_tmpl);
3066
+ this.exprAllowed = false;
3067
+ };
3068
+
3069
+ // tokExprAllowed stays unchanged
3070
+
3071
+ },{"./state":13,"./tokentype":17,"./whitespace":19}],16:[function(_dereq_,module,exports){
3072
+ "use strict";
3073
+
3074
+ var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
3075
+
3076
+ exports.__esModule = true;
3077
+
3078
+ var _identifier = _dereq_("./identifier");
3079
+
3080
+ var isIdentifierStart = _identifier.isIdentifierStart;
3081
+ var isIdentifierChar = _identifier.isIdentifierChar;
3082
+
3083
+ var _tokentype = _dereq_("./tokentype");
3084
+
3085
+ var tt = _tokentype.types;
3086
+ var keywordTypes = _tokentype.keywords;
3087
+
3088
+ var Parser = _dereq_("./state").Parser;
3089
+
3090
+ var SourceLocation = _dereq_("./location").SourceLocation;
3091
+
3092
+ var _whitespace = _dereq_("./whitespace");
3093
+
3094
+ var lineBreak = _whitespace.lineBreak;
3095
+ var lineBreakG = _whitespace.lineBreakG;
3096
+ var isNewLine = _whitespace.isNewLine;
3097
+ var nonASCIIwhitespace = _whitespace.nonASCIIwhitespace;
3098
+
3099
+ // Object type used to represent tokens. Note that normally, tokens
3100
+ // simply exist as properties on the parser object. This is only
3101
+ // used for the onToken callback and the external tokenizer.
3102
+
3103
+ var Token = exports.Token = function Token(p) {
3104
+ _classCallCheck(this, Token);
3105
+
3106
+ this.type = p.type;
3107
+ this.value = p.value;
3108
+ this.start = p.start;
3109
+ this.end = p.end;
3110
+ if (p.options.locations) this.loc = new SourceLocation(p, p.startLoc, p.endLoc);
3111
+ if (p.options.ranges) this.range = [p.start, p.end];
3112
+ };
3113
+
3114
+ // ## Tokenizer
3115
+
3116
+ var pp = Parser.prototype;
3117
+
3118
+ // Are we running under Rhino?
3119
+ var isRhino = typeof Packages !== "undefined";
3120
+
3121
+ // Move to the next token
3122
+
3123
+ pp.next = function () {
3124
+ if (this.options.onToken) this.options.onToken(new Token(this));
3125
+
3126
+ this.lastTokEnd = this.end;
3127
+ this.lastTokStart = this.start;
3128
+ this.lastTokEndLoc = this.endLoc;
3129
+ this.lastTokStartLoc = this.startLoc;
3130
+ this.nextToken();
3131
+ };
3132
+
3133
+ pp.getToken = function () {
3134
+ this.next();
3135
+ return new Token(this);
3136
+ };
3137
+
3138
+ // If we're in an ES6 environment, make parsers iterable
3139
+ if (typeof Symbol !== "undefined") pp[Symbol.iterator] = function () {
3140
+ var self = this;
3141
+ return { next: function next() {
3142
+ var token = self.getToken();
3143
+ return {
3144
+ done: token.type === tt.eof,
3145
+ value: token
3146
+ };
3147
+ } };
3148
+ };
3149
+
3150
+ // Toggle strict mode. Re-reads the next number or string to please
3151
+ // pedantic tests (`"use strict"; 010;` should fail).
3152
+
3153
+ pp.setStrict = function (strict) {
3154
+ this.strict = strict;
3155
+ if (this.type !== tt.num && this.type !== tt.string) return;
3156
+ this.pos = this.start;
3157
+ if (this.options.locations) {
3158
+ while (this.pos < this.lineStart) {
3159
+ this.lineStart = this.input.lastIndexOf("\n", this.lineStart - 2) + 1;
3160
+ --this.curLine;
3161
+ }
3162
+ }
3163
+ this.nextToken();
3164
+ };
3165
+
3166
+ pp.curContext = function () {
3167
+ return this.context[this.context.length - 1];
3168
+ };
3169
+
3170
+ // Read a single token, updating the parser object's token-related
3171
+ // properties.
3172
+
3173
+ pp.nextToken = function () {
3174
+ var curContext = this.curContext();
3175
+ if (!curContext || !curContext.preserveSpace) this.skipSpace();
3176
+
3177
+ this.start = this.pos;
3178
+ if (this.options.locations) this.startLoc = this.curPosition();
3179
+ if (this.pos >= this.input.length) return this.finishToken(tt.eof);
3180
+
3181
+ if (curContext.override) return curContext.override(this);else this.readToken(this.fullCharCodeAtPos());
3182
+ };
3183
+
3184
+ pp.readToken = function (code) {
3185
+ // Identifier or keyword. '\uXXXX' sequences are allowed in
3186
+ // identifiers, so '\' also dispatches to that.
3187
+ if (isIdentifierStart(code, this.options.ecmaVersion >= 6) || code === 92 /* '\' */) return this.readWord();
3188
+
3189
+ return this.getTokenFromCode(code);
3190
+ };
3191
+
3192
+ pp.fullCharCodeAtPos = function () {
3193
+ var code = this.input.charCodeAt(this.pos);
3194
+ if (code <= 55295 || code >= 57344) return code;
3195
+ var next = this.input.charCodeAt(this.pos + 1);
3196
+ return (code << 10) + next - 56613888;
3197
+ };
3198
+
3199
+ pp.skipBlockComment = function () {
3200
+ var startLoc = this.options.onComment && this.options.locations && this.curPosition();
3201
+ var start = this.pos,
3202
+ end = this.input.indexOf("*/", this.pos += 2);
3203
+ if (end === -1) this.raise(this.pos - 2, "Unterminated comment");
3204
+ this.pos = end + 2;
3205
+ if (this.options.locations) {
3206
+ lineBreakG.lastIndex = start;
3207
+ var match = undefined;
3208
+ while ((match = lineBreakG.exec(this.input)) && match.index < this.pos) {
3209
+ ++this.curLine;
3210
+ this.lineStart = match.index + match[0].length;
3211
+ }
3212
+ }
3213
+ if (this.options.onComment) this.options.onComment(true, this.input.slice(start + 2, end), start, this.pos, startLoc, this.options.locations && this.curPosition());
3214
+ };
3215
+
3216
+ pp.skipLineComment = function (startSkip) {
3217
+ var start = this.pos;
3218
+ var startLoc = this.options.onComment && this.options.locations && this.curPosition();
3219
+ var ch = this.input.charCodeAt(this.pos += startSkip);
3220
+ while (this.pos < this.input.length && ch !== 10 && ch !== 13 && ch !== 8232 && ch !== 8233) {
3221
+ ++this.pos;
3222
+ ch = this.input.charCodeAt(this.pos);
3223
+ }
3224
+ if (this.options.onComment) this.options.onComment(false, this.input.slice(start + startSkip, this.pos), start, this.pos, startLoc, this.options.locations && this.curPosition());
3225
+ };
3226
+
3227
+ // Called at the start of the parse and after every token. Skips
3228
+ // whitespace and comments, and.
3229
+
3230
+ pp.skipSpace = function () {
3231
+ while (this.pos < this.input.length) {
3232
+ var ch = this.input.charCodeAt(this.pos);
3233
+ if (ch === 32) {
3234
+ // ' '
3235
+ ++this.pos;
3236
+ } else if (ch === 13) {
3237
+ ++this.pos;
3238
+ var next = this.input.charCodeAt(this.pos);
3239
+ if (next === 10) {
3240
+ ++this.pos;
3241
+ }
3242
+ if (this.options.locations) {
3243
+ ++this.curLine;
3244
+ this.lineStart = this.pos;
3245
+ }
3246
+ } else if (ch === 10 || ch === 8232 || ch === 8233) {
3247
+ ++this.pos;
3248
+ if (this.options.locations) {
3249
+ ++this.curLine;
3250
+ this.lineStart = this.pos;
3251
+ }
3252
+ } else if (ch > 8 && ch < 14) {
3253
+ ++this.pos;
3254
+ } else if (ch === 47) {
3255
+ // '/'
3256
+ var next = this.input.charCodeAt(this.pos + 1);
3257
+ if (next === 42) {
3258
+ // '*'
3259
+ this.skipBlockComment();
3260
+ } else if (next === 47) {
3261
+ // '/'
3262
+ this.skipLineComment(2);
3263
+ } else break;
3264
+ } else if (ch === 160) {
3265
+ // '\xa0'
3266
+ ++this.pos;
3267
+ } else if (ch >= 5760 && nonASCIIwhitespace.test(String.fromCharCode(ch))) {
3268
+ ++this.pos;
3269
+ } else {
3270
+ break;
3271
+ }
3272
+ }
3273
+ };
3274
+
3275
+ // Called at the end of every token. Sets `end`, `val`, and
3276
+ // maintains `context` and `exprAllowed`, and skips the space after
3277
+ // the token, so that the next one's `start` will point at the
3278
+ // right position.
3279
+
3280
+ pp.finishToken = function (type, val) {
3281
+ this.end = this.pos;
3282
+ if (this.options.locations) this.endLoc = this.curPosition();
3283
+ var prevType = this.type;
3284
+ this.type = type;
3285
+ this.value = val;
3286
+
3287
+ this.updateContext(prevType);
3288
+ };
3289
+
3290
+ // ### Token reading
3291
+
3292
+ // This is the function that is called to fetch the next token. It
3293
+ // is somewhat obscure, because it works in character codes rather
3294
+ // than characters, and because operator parsing has been inlined
3295
+ // into it.
3296
+ //
3297
+ // All in the name of speed.
3298
+ //
3299
+ pp.readToken_dot = function () {
3300
+ var next = this.input.charCodeAt(this.pos + 1);
3301
+ if (next >= 48 && next <= 57) return this.readNumber(true);
3302
+ var next2 = this.input.charCodeAt(this.pos + 2);
3303
+ if (this.options.ecmaVersion >= 6 && next === 46 && next2 === 46) {
3304
+ // 46 = dot '.'
3305
+ this.pos += 3;
3306
+ return this.finishToken(tt.ellipsis);
3307
+ } else {
3308
+ ++this.pos;
3309
+ return this.finishToken(tt.dot);
3310
+ }
3311
+ };
3312
+
3313
+ pp.readToken_slash = function () {
3314
+ // '/'
3315
+ var next = this.input.charCodeAt(this.pos + 1);
3316
+ if (this.exprAllowed) {
3317
+ ++this.pos;return this.readRegexp();
3318
+ }
3319
+ if (next === 61) return this.finishOp(tt.assign, 2);
3320
+ return this.finishOp(tt.slash, 1);
3321
+ };
3322
+
3323
+ pp.readToken_mult_modulo = function (code) {
3324
+ // '%*'
3325
+ var next = this.input.charCodeAt(this.pos + 1);
3326
+ if (next === 61) return this.finishOp(tt.assign, 2);
3327
+ return this.finishOp(code === 42 ? tt.star : tt.modulo, 1);
3328
+ };
3329
+
3330
+ pp.readToken_pipe_amp = function (code) {
3331
+ // '|&'
3332
+ var next = this.input.charCodeAt(this.pos + 1);
3333
+ if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2);
3334
+ if (next === 61) return this.finishOp(tt.assign, 2);
3335
+ return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1);
3336
+ };
3337
+
3338
+ pp.readToken_caret = function () {
3339
+ // '^'
3340
+ var next = this.input.charCodeAt(this.pos + 1);
3341
+ if (next === 61) return this.finishOp(tt.assign, 2);
3342
+ return this.finishOp(tt.bitwiseXOR, 1);
3343
+ };
3344
+
3345
+ pp.readToken_plus_min = function (code) {
3346
+ // '+-'
3347
+ var next = this.input.charCodeAt(this.pos + 1);
3348
+ if (next === code) {
3349
+ if (next == 45 && this.input.charCodeAt(this.pos + 2) == 62 && lineBreak.test(this.input.slice(this.lastTokEnd, this.pos))) {
3350
+ // A `-->` line comment
3351
+ this.skipLineComment(3);
3352
+ this.skipSpace();
3353
+ return this.nextToken();
3354
+ }
3355
+ return this.finishOp(tt.incDec, 2);
3356
+ }
3357
+ if (next === 61) return this.finishOp(tt.assign, 2);
3358
+ return this.finishOp(tt.plusMin, 1);
3359
+ };
3360
+
3361
+ pp.readToken_lt_gt = function (code) {
3362
+ // '<>'
3363
+ var next = this.input.charCodeAt(this.pos + 1);
3364
+ var size = 1;
3365
+ if (next === code) {
3366
+ size = code === 62 && this.input.charCodeAt(this.pos + 2) === 62 ? 3 : 2;
3367
+ if (this.input.charCodeAt(this.pos + size) === 61) return this.finishOp(tt.assign, size + 1);
3368
+ return this.finishOp(tt.bitShift, size);
3369
+ }
3370
+ if (next == 33 && code == 60 && this.input.charCodeAt(this.pos + 2) == 45 && this.input.charCodeAt(this.pos + 3) == 45) {
3371
+ if (this.inModule) this.unexpected();
3372
+ // `<!--`, an XML-style comment that should be interpreted as a line comment
3373
+ this.skipLineComment(4);
3374
+ this.skipSpace();
3375
+ return this.nextToken();
3376
+ }
3377
+ if (next === 61) size = this.input.charCodeAt(this.pos + 2) === 61 ? 3 : 2;
3378
+ return this.finishOp(tt.relational, size);
3379
+ };
3380
+
3381
+ pp.readToken_eq_excl = function (code) {
3382
+ // '=!'
3383
+ var next = this.input.charCodeAt(this.pos + 1);
3384
+ if (next === 61) return this.finishOp(tt.equality, this.input.charCodeAt(this.pos + 2) === 61 ? 3 : 2);
3385
+ if (code === 61 && next === 62 && this.options.ecmaVersion >= 6) {
3386
+ // '=>'
3387
+ this.pos += 2;
3388
+ return this.finishToken(tt.arrow);
3389
+ }
3390
+ return this.finishOp(code === 61 ? tt.eq : tt.prefix, 1);
3391
+ };
3392
+
3393
+ pp.getTokenFromCode = function (code) {
3394
+ switch (code) {
3395
+ // The interpretation of a dot depends on whether it is followed
3396
+ // by a digit or another two dots.
3397
+ case 46:
3398
+ // '.'
3399
+ return this.readToken_dot();
3400
+
3401
+ // Punctuation tokens.
3402
+ case 40:
3403
+ ++this.pos;return this.finishToken(tt.parenL);
3404
+ case 41:
3405
+ ++this.pos;return this.finishToken(tt.parenR);
3406
+ case 59:
3407
+ ++this.pos;return this.finishToken(tt.semi);
3408
+ case 44:
3409
+ ++this.pos;return this.finishToken(tt.comma);
3410
+ case 91:
3411
+ ++this.pos;return this.finishToken(tt.bracketL);
3412
+ case 93:
3413
+ ++this.pos;return this.finishToken(tt.bracketR);
3414
+ case 123:
3415
+ ++this.pos;return this.finishToken(tt.braceL);
3416
+ case 125:
3417
+ ++this.pos;return this.finishToken(tt.braceR);
3418
+ case 58:
3419
+ ++this.pos;return this.finishToken(tt.colon);
3420
+ case 63:
3421
+ ++this.pos;return this.finishToken(tt.question);
3422
+
3423
+ case 96:
3424
+ // '`'
3425
+ if (this.options.ecmaVersion < 6) break;
3426
+ ++this.pos;
3427
+ return this.finishToken(tt.backQuote);
3428
+
3429
+ case 48:
3430
+ // '0'
3431
+ var next = this.input.charCodeAt(this.pos + 1);
3432
+ if (next === 120 || next === 88) return this.readRadixNumber(16); // '0x', '0X' - hex number
3433
+ if (this.options.ecmaVersion >= 6) {
3434
+ if (next === 111 || next === 79) return this.readRadixNumber(8); // '0o', '0O' - octal number
3435
+ if (next === 98 || next === 66) return this.readRadixNumber(2); // '0b', '0B' - binary number
3436
+ }
3437
+ // Anything else beginning with a digit is an integer, octal
3438
+ // number, or float.
3439
+ case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:
3440
+ // 1-9
3441
+ return this.readNumber(false);
3442
+
3443
+ // Quotes produce strings.
3444
+ case 34:case 39:
3445
+ // '"', "'"
3446
+ return this.readString(code);
3447
+
3448
+ // Operators are parsed inline in tiny state machines. '=' (61) is
3449
+ // often referred to. `finishOp` simply skips the amount of
3450
+ // characters it is given as second argument, and returns a token
3451
+ // of the type given by its first argument.
3452
+
3453
+ case 47:
3454
+ // '/'
3455
+ return this.readToken_slash();
3456
+
3457
+ case 37:case 42:
3458
+ // '%*'
3459
+ return this.readToken_mult_modulo(code);
3460
+
3461
+ case 124:case 38:
3462
+ // '|&'
3463
+ return this.readToken_pipe_amp(code);
3464
+
3465
+ case 94:
3466
+ // '^'
3467
+ return this.readToken_caret();
3468
+
3469
+ case 43:case 45:
3470
+ // '+-'
3471
+ return this.readToken_plus_min(code);
3472
+
3473
+ case 60:case 62:
3474
+ // '<>'
3475
+ return this.readToken_lt_gt(code);
3476
+
3477
+ case 61:case 33:
3478
+ // '=!'
3479
+ return this.readToken_eq_excl(code);
3480
+
3481
+ case 126:
3482
+ // '~'
3483
+ return this.finishOp(tt.prefix, 1);
3484
+ }
3485
+
3486
+ this.raise(this.pos, "Unexpected character '" + codePointToString(code) + "'");
3487
+ };
3488
+
3489
+ pp.finishOp = function (type, size) {
3490
+ var str = this.input.slice(this.pos, this.pos + size);
3491
+ this.pos += size;
3492
+ return this.finishToken(type, str);
3493
+ };
3494
+
3495
+ var regexpUnicodeSupport = false;
3496
+ try {
3497
+ new RegExp("￿", "u");regexpUnicodeSupport = true;
3498
+ } catch (e) {}
3499
+
3500
+ // Parse a regular expression. Some context-awareness is necessary,
3501
+ // since a '/' inside a '[]' set does not end the expression.
3502
+
3503
+ pp.readRegexp = function () {
3504
+ var escaped = undefined,
3505
+ inClass = undefined,
3506
+ start = this.pos;
3507
+ for (;;) {
3508
+ if (this.pos >= this.input.length) this.raise(start, "Unterminated regular expression");
3509
+ var ch = this.input.charAt(this.pos);
3510
+ if (lineBreak.test(ch)) this.raise(start, "Unterminated regular expression");
3511
+ if (!escaped) {
3512
+ if (ch === "[") inClass = true;else if (ch === "]" && inClass) inClass = false;else if (ch === "/" && !inClass) break;
3513
+ escaped = ch === "\\";
3514
+ } else escaped = false;
3515
+ ++this.pos;
3516
+ }
3517
+ var content = this.input.slice(start, this.pos);
3518
+ ++this.pos;
3519
+ // Need to use `readWord1` because '\uXXXX' sequences are allowed
3520
+ // here (don't ask).
3521
+ var mods = this.readWord1();
3522
+ var tmp = content;
3523
+ if (mods) {
3524
+ var validFlags = /^[gmsiy]*$/;
3525
+ if (this.options.ecmaVersion >= 6) validFlags = /^[gmsiyu]*$/;
3526
+ if (!validFlags.test(mods)) this.raise(start, "Invalid regular expression flag");
3527
+ if (mods.indexOf("u") >= 0 && !regexpUnicodeSupport) {
3528
+ // Replace each astral symbol and every Unicode escape sequence that
3529
+ // possibly represents an astral symbol or a paired surrogate with a
3530
+ // single ASCII symbol to avoid throwing on regular expressions that
3531
+ // are only valid in combination with the `/u` flag.
3532
+ // Note: replacing with the ASCII symbol `x` might cause false
3533
+ // negatives in unlikely scenarios. For example, `[\u{61}-b]` is a
3534
+ // perfectly valid pattern that is equivalent to `[a-b]`, but it would
3535
+ // be replaced by `[x-b]` which throws an error.
3536
+ tmp = tmp.replace(/\\u([a-fA-F0-9]{4})|\\u\{([0-9a-fA-F]+)\}|[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "x");
3537
+ }
3538
+ }
3539
+ // Detect invalid regular expressions.
3540
+ var value = null;
3541
+ // Rhino's regular expression parser is flaky and throws uncatchable exceptions,
3542
+ // so don't do detection if we are running under Rhino
3543
+ if (!isRhino) {
3544
+ try {
3545
+ new RegExp(tmp);
3546
+ } catch (e) {
3547
+ if (e instanceof SyntaxError) this.raise(start, "Error parsing regular expression: " + e.message);
3548
+ this.raise(e);
3549
+ }
3550
+ // Get a regular expression object for this pattern-flag pair, or `null` in
3551
+ // case the current environment doesn't support the flags it uses.
3552
+ try {
3553
+ value = new RegExp(content, mods);
3554
+ } catch (err) {}
3555
+ }
3556
+ return this.finishToken(tt.regexp, { pattern: content, flags: mods, value: value });
3557
+ };
3558
+
3559
+ // Read an integer in the given radix. Return null if zero digits
3560
+ // were read, the integer value otherwise. When `len` is given, this
3561
+ // will return `null` unless the integer has exactly `len` digits.
3562
+
3563
+ pp.readInt = function (radix, len) {
3564
+ var start = this.pos,
3565
+ total = 0;
3566
+ for (var i = 0, e = len == null ? Infinity : len; i < e; ++i) {
3567
+ var code = this.input.charCodeAt(this.pos),
3568
+ val = undefined;
3569
+ if (code >= 97) val = code - 97 + 10; // a
3570
+ else if (code >= 65) val = code - 65 + 10; // A
3571
+ else if (code >= 48 && code <= 57) val = code - 48; // 0-9
3572
+ else val = Infinity;
3573
+ if (val >= radix) break;
3574
+ ++this.pos;
3575
+ total = total * radix + val;
3576
+ }
3577
+ if (this.pos === start || len != null && this.pos - start !== len) return null;
3578
+
3579
+ return total;
3580
+ };
3581
+
3582
+ pp.readRadixNumber = function (radix) {
3583
+ this.pos += 2; // 0x
3584
+ var val = this.readInt(radix);
3585
+ if (val == null) this.raise(this.start + 2, "Expected number in radix " + radix);
3586
+ if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.pos, "Identifier directly after number");
3587
+ return this.finishToken(tt.num, val);
3588
+ };
3589
+
3590
+ // Read an integer, octal integer, or floating-point number.
3591
+
3592
+ pp.readNumber = function (startsWithDot) {
3593
+ var start = this.pos,
3594
+ isFloat = false,
3595
+ octal = this.input.charCodeAt(this.pos) === 48;
3596
+ if (!startsWithDot && this.readInt(10) === null) this.raise(start, "Invalid number");
3597
+ if (this.input.charCodeAt(this.pos) === 46) {
3598
+ ++this.pos;
3599
+ this.readInt(10);
3600
+ isFloat = true;
3601
+ }
3602
+ var next = this.input.charCodeAt(this.pos);
3603
+ if (next === 69 || next === 101) {
3604
+ // 'eE'
3605
+ next = this.input.charCodeAt(++this.pos);
3606
+ if (next === 43 || next === 45) ++this.pos; // '+-'
3607
+ if (this.readInt(10) === null) this.raise(start, "Invalid number");
3608
+ isFloat = true;
3609
+ }
3610
+ if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.pos, "Identifier directly after number");
3611
+
3612
+ var str = this.input.slice(start, this.pos),
3613
+ val = undefined;
3614
+ if (isFloat) val = parseFloat(str);else if (!octal || str.length === 1) val = parseInt(str, 10);else if (/[89]/.test(str) || this.strict) this.raise(start, "Invalid number");else val = parseInt(str, 8);
3615
+ return this.finishToken(tt.num, val);
3616
+ };
3617
+
3618
+ // Read a string value, interpreting backslash-escapes.
3619
+
3620
+ pp.readCodePoint = function () {
3621
+ var ch = this.input.charCodeAt(this.pos),
3622
+ code = undefined;
3623
+
3624
+ if (ch === 123) {
3625
+ if (this.options.ecmaVersion < 6) this.unexpected();
3626
+ ++this.pos;
3627
+ code = this.readHexChar(this.input.indexOf("}", this.pos) - this.pos);
3628
+ ++this.pos;
3629
+ if (code > 1114111) this.unexpected();
3630
+ } else {
3631
+ code = this.readHexChar(4);
3632
+ }
3633
+ return code;
3634
+ };
3635
+
3636
+ function codePointToString(code) {
3637
+ // UTF-16 Decoding
3638
+ if (code <= 65535) {
3639
+ return String.fromCharCode(code);
3640
+ }return String.fromCharCode((code - 65536 >> 10) + 55296, (code - 65536 & 1023) + 56320);
3641
+ }
3642
+
3643
+ pp.readString = function (quote) {
3644
+ var out = "",
3645
+ chunkStart = ++this.pos;
3646
+ for (;;) {
3647
+ if (this.pos >= this.input.length) this.raise(this.start, "Unterminated string constant");
3648
+ var ch = this.input.charCodeAt(this.pos);
3649
+ if (ch === quote) break;
3650
+ if (ch === 92) {
3651
+ // '\'
3652
+ out += this.input.slice(chunkStart, this.pos);
3653
+ out += this.readEscapedChar();
3654
+ chunkStart = this.pos;
3655
+ } else {
3656
+ if (isNewLine(ch)) this.raise(this.start, "Unterminated string constant");
3657
+ ++this.pos;
3658
+ }
3659
+ }
3660
+ out += this.input.slice(chunkStart, this.pos++);
3661
+ return this.finishToken(tt.string, out);
3662
+ };
3663
+
3664
+ // Reads template string tokens.
3665
+
3666
+ pp.readTmplToken = function () {
3667
+ var out = "",
3668
+ chunkStart = this.pos;
3669
+ for (;;) {
3670
+ if (this.pos >= this.input.length) this.raise(this.start, "Unterminated template");
3671
+ var ch = this.input.charCodeAt(this.pos);
3672
+ if (ch === 96 || ch === 36 && this.input.charCodeAt(this.pos + 1) === 123) {
3673
+ // '`', '${'
3674
+ if (this.pos === this.start && this.type === tt.template) {
3675
+ if (ch === 36) {
3676
+ this.pos += 2;
3677
+ return this.finishToken(tt.dollarBraceL);
3678
+ } else {
3679
+ ++this.pos;
3680
+ return this.finishToken(tt.backQuote);
3681
+ }
3682
+ }
3683
+ out += this.input.slice(chunkStart, this.pos);
3684
+ return this.finishToken(tt.template, out);
3685
+ }
3686
+ if (ch === 92) {
3687
+ // '\'
3688
+ out += this.input.slice(chunkStart, this.pos);
3689
+ out += this.readEscapedChar();
3690
+ chunkStart = this.pos;
3691
+ } else if (isNewLine(ch)) {
3692
+ out += this.input.slice(chunkStart, this.pos);
3693
+ ++this.pos;
3694
+ if (ch === 13 && this.input.charCodeAt(this.pos) === 10) {
3695
+ ++this.pos;
3696
+ out += "\n";
3697
+ } else {
3698
+ out += String.fromCharCode(ch);
3699
+ }
3700
+ if (this.options.locations) {
3701
+ ++this.curLine;
3702
+ this.lineStart = this.pos;
3703
+ }
3704
+ chunkStart = this.pos;
3705
+ } else {
3706
+ ++this.pos;
3707
+ }
3708
+ }
3709
+ };
3710
+
3711
+ // Used to read escaped characters
3712
+
3713
+ pp.readEscapedChar = function () {
3714
+ var ch = this.input.charCodeAt(++this.pos);
3715
+ var octal = /^[0-7]+/.exec(this.input.slice(this.pos, this.pos + 3));
3716
+ if (octal) octal = octal[0];
3717
+ while (octal && parseInt(octal, 8) > 255) octal = octal.slice(0, -1);
3718
+ if (octal === "0") octal = null;
3719
+ ++this.pos;
3720
+ if (octal) {
3721
+ if (this.strict) this.raise(this.pos - 2, "Octal literal in strict mode");
3722
+ this.pos += octal.length - 1;
3723
+ return String.fromCharCode(parseInt(octal, 8));
3724
+ } else {
3725
+ switch (ch) {
3726
+ case 110:
3727
+ return "\n"; // 'n' -> '\n'
3728
+ case 114:
3729
+ return "\r"; // 'r' -> '\r'
3730
+ case 120:
3731
+ return String.fromCharCode(this.readHexChar(2)); // 'x'
3732
+ case 117:
3733
+ return codePointToString(this.readCodePoint()); // 'u'
3734
+ case 116:
3735
+ return "\t"; // 't' -> '\t'
3736
+ case 98:
3737
+ return "\b"; // 'b' -> '\b'
3738
+ case 118:
3739
+ return "\u000b"; // 'v' -> '\u000b'
3740
+ case 102:
3741
+ return "\f"; // 'f' -> '\f'
3742
+ case 48:
3743
+ return "\u0000"; // 0 -> '\0'
3744
+ case 13:
3745
+ if (this.input.charCodeAt(this.pos) === 10) ++this.pos; // '\r\n'
3746
+ case 10:
3747
+ // ' \n'
3748
+ if (this.options.locations) {
3749
+ this.lineStart = this.pos;++this.curLine;
3750
+ }
3751
+ return "";
3752
+ default:
3753
+ return String.fromCharCode(ch);
3754
+ }
3755
+ }
3756
+ };
3757
+
3758
+ // Used to read character escape sequences ('\x', '\u', '\U').
3759
+
3760
+ pp.readHexChar = function (len) {
3761
+ var n = this.readInt(16, len);
3762
+ if (n === null) this.raise(this.start, "Bad character escape sequence");
3763
+ return n;
3764
+ };
3765
+
3766
+ // Used to signal to callers of `readWord1` whether the word
3767
+ // contained any escape sequences. This is needed because words with
3768
+ // escape sequences must not be interpreted as keywords.
3769
+
3770
+ var containsEsc;
3771
+
3772
+ // Read an identifier, and return it as a string. Sets `containsEsc`
3773
+ // to whether the word contained a '\u' escape.
3774
+ //
3775
+ // Incrementally adds only escaped chars, adding other chunks as-is
3776
+ // as a micro-optimization.
3777
+
3778
+ pp.readWord1 = function () {
3779
+ containsEsc = false;
3780
+ var word = "",
3781
+ first = true,
3782
+ chunkStart = this.pos;
3783
+ var astral = this.options.ecmaVersion >= 6;
3784
+ while (this.pos < this.input.length) {
3785
+ var ch = this.fullCharCodeAtPos();
3786
+ if (isIdentifierChar(ch, astral)) {
3787
+ this.pos += ch <= 65535 ? 1 : 2;
3788
+ } else if (ch === 92) {
3789
+ // "\"
3790
+ containsEsc = true;
3791
+ word += this.input.slice(chunkStart, this.pos);
3792
+ var escStart = this.pos;
3793
+ if (this.input.charCodeAt(++this.pos) != 117) // "u"
3794
+ this.raise(this.pos, "Expecting Unicode escape sequence \\uXXXX");
3795
+ ++this.pos;
3796
+ var esc = this.readCodePoint();
3797
+ if (!(first ? isIdentifierStart : isIdentifierChar)(esc, astral)) this.raise(escStart, "Invalid Unicode escape");
3798
+ word += codePointToString(esc);
3799
+ chunkStart = this.pos;
3800
+ } else {
3801
+ break;
3802
+ }
3803
+ first = false;
3804
+ }
3805
+ return word + this.input.slice(chunkStart, this.pos);
3806
+ };
3807
+
3808
+ // Read an identifier or keyword token. Will check for reserved
3809
+ // words when necessary.
3810
+
3811
+ pp.readWord = function () {
3812
+ var word = this.readWord1();
3813
+ var type = tt.name;
3814
+ if ((this.options.ecmaVersion >= 6 || !containsEsc) && this.isKeyword(word)) type = keywordTypes[word];
3815
+ return this.finishToken(type, word);
3816
+ };
3817
+
3818
+ },{"./identifier":7,"./location":8,"./state":13,"./tokentype":17,"./whitespace":19}],17:[function(_dereq_,module,exports){
3819
+ "use strict";
3820
+
3821
+ var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
3822
+
3823
+ exports.__esModule = true;
3824
+ // ## Token types
3825
+
3826
+ // The assignment of fine-grained, information-carrying type objects
3827
+ // allows the tokenizer to store the information it has about a
3828
+ // token in a way that is very cheap for the parser to look up.
3829
+
3830
+ // All token type variables start with an underscore, to make them
3831
+ // easy to recognize.
3832
+
3833
+ // The `beforeExpr` property is used to disambiguate between regular
3834
+ // expressions and divisions. It is set on all token types that can
3835
+ // be followed by an expression (thus, a slash after them would be a
3836
+ // regular expression).
3837
+ //
3838
+ // `isLoop` marks a keyword as starting a loop, which is important
3839
+ // to know when parsing a label, in order to allow or disallow
3840
+ // continue jumps to that label.
3841
+
3842
+ var TokenType = exports.TokenType = function TokenType(label) {
3843
+ var conf = arguments[1] === undefined ? {} : arguments[1];
3844
+
3845
+ _classCallCheck(this, TokenType);
3846
+
3847
+ this.label = label;
3848
+ this.keyword = conf.keyword;
3849
+ this.beforeExpr = !!conf.beforeExpr;
3850
+ this.startsExpr = !!conf.startsExpr;
3851
+ this.isLoop = !!conf.isLoop;
3852
+ this.isAssign = !!conf.isAssign;
3853
+ this.prefix = !!conf.prefix;
3854
+ this.postfix = !!conf.postfix;
3855
+ this.binop = conf.binop || null;
3856
+ this.updateContext = null;
3857
+ };
3858
+
3859
+ function binop(name, prec) {
3860
+ return new TokenType(name, { beforeExpr: true, binop: prec });
3861
+ }
3862
+ var beforeExpr = { beforeExpr: true },
3863
+ startsExpr = { startsExpr: true };
3864
+
3865
+ var types = {
3866
+ num: new TokenType("num", startsExpr),
3867
+ regexp: new TokenType("regexp", startsExpr),
3868
+ string: new TokenType("string", startsExpr),
3869
+ name: new TokenType("name", startsExpr),
3870
+ eof: new TokenType("eof"),
3871
+
3872
+ // Punctuation token types.
3873
+ bracketL: new TokenType("[", { beforeExpr: true, startsExpr: true }),
3874
+ bracketR: new TokenType("]"),
3875
+ braceL: new TokenType("{", { beforeExpr: true, startsExpr: true }),
3876
+ braceR: new TokenType("}"),
3877
+ parenL: new TokenType("(", { beforeExpr: true, startsExpr: true }),
3878
+ parenR: new TokenType(")"),
3879
+ comma: new TokenType(",", beforeExpr),
3880
+ semi: new TokenType(";", beforeExpr),
3881
+ colon: new TokenType(":", beforeExpr),
3882
+ dot: new TokenType("."),
3883
+ question: new TokenType("?", beforeExpr),
3884
+ arrow: new TokenType("=>", beforeExpr),
3885
+ template: new TokenType("template"),
3886
+ ellipsis: new TokenType("...", beforeExpr),
3887
+ backQuote: new TokenType("`", startsExpr),
3888
+ dollarBraceL: new TokenType("${", { beforeExpr: true, startsExpr: true }),
3889
+
3890
+ // Operators. These carry several kinds of properties to help the
3891
+ // parser use them properly (the presence of these properties is
3892
+ // what categorizes them as operators).
3893
+ //
3894
+ // `binop`, when present, specifies that this operator is a binary
3895
+ // operator, and will refer to its precedence.
3896
+ //
3897
+ // `prefix` and `postfix` mark the operator as a prefix or postfix
3898
+ // unary operator.
3899
+ //
3900
+ // `isAssign` marks all of `=`, `+=`, `-=` etcetera, which act as
3901
+ // binary operators with a very low precedence, that should result
3902
+ // in AssignmentExpression nodes.
3903
+
3904
+ eq: new TokenType("=", { beforeExpr: true, isAssign: true }),
3905
+ assign: new TokenType("_=", { beforeExpr: true, isAssign: true }),
3906
+ incDec: new TokenType("++/--", { prefix: true, postfix: true, startsExpr: true }),
3907
+ prefix: new TokenType("prefix", { beforeExpr: true, prefix: true, startsExpr: true }),
3908
+ logicalOR: binop("||", 1),
3909
+ logicalAND: binop("&&", 2),
3910
+ bitwiseOR: binop("|", 3),
3911
+ bitwiseXOR: binop("^", 4),
3912
+ bitwiseAND: binop("&", 5),
3913
+ equality: binop("==/!=", 6),
3914
+ relational: binop("</>", 7),
3915
+ bitShift: binop("<</>>", 8),
3916
+ plusMin: new TokenType("+/-", { beforeExpr: true, binop: 9, prefix: true, startsExpr: true }),
3917
+ modulo: binop("%", 10),
3918
+ star: binop("*", 10),
3919
+ slash: binop("/", 10)
3920
+ };
3921
+
3922
+ exports.types = types;
3923
+ // Map keyword names to token types.
3924
+
3925
+ var keywords = {};
3926
+
3927
+ exports.keywords = keywords;
3928
+ // Succinct definitions of keyword token types
3929
+ function kw(name) {
3930
+ var options = arguments[1] === undefined ? {} : arguments[1];
3931
+
3932
+ options.keyword = name;
3933
+ keywords[name] = types["_" + name] = new TokenType(name, options);
3934
+ }
3935
+
3936
+ kw("break");
3937
+ kw("case", beforeExpr);
3938
+ kw("catch");
3939
+ kw("continue");
3940
+ kw("debugger");
3941
+ kw("default");
3942
+ kw("do", { isLoop: true });
3943
+ kw("else", beforeExpr);
3944
+ kw("finally");
3945
+ kw("for", { isLoop: true });
3946
+ kw("function", startsExpr);
3947
+ kw("if");
3948
+ kw("return", beforeExpr);
3949
+ kw("switch");
3950
+ kw("throw", beforeExpr);
3951
+ kw("try");
3952
+ kw("var");
3953
+ kw("let");
3954
+ kw("const");
3955
+ kw("while", { isLoop: true });
3956
+ kw("with");
3957
+ kw("new", { beforeExpr: true, startsExpr: true });
3958
+ kw("this", startsExpr);
3959
+ kw("super", startsExpr);
3960
+ kw("class");
3961
+ kw("extends", beforeExpr);
3962
+ kw("export");
3963
+ kw("import");
3964
+ kw("yield", { beforeExpr: true, startsExpr: true });
3965
+ kw("null", startsExpr);
3966
+ kw("true", startsExpr);
3967
+ kw("false", startsExpr);
3968
+ kw("in", { beforeExpr: true, binop: 7 });
3969
+ kw("instanceof", { beforeExpr: true, binop: 7 });
3970
+ kw("typeof", { beforeExpr: true, prefix: true, startsExpr: true });
3971
+ kw("void", { beforeExpr: true, prefix: true, startsExpr: true });
3972
+ kw("delete", { beforeExpr: true, prefix: true, startsExpr: true });
3973
+
3974
+ },{}],18:[function(_dereq_,module,exports){
3975
+ "use strict";
3976
+
3977
+ exports.isArray = isArray;
3978
+
3979
+ // Checks if an object has a property.
3980
+
3981
+ exports.has = has;
3982
+ exports.__esModule = true;
3983
+
3984
+ function isArray(obj) {
3985
+ return Object.prototype.toString.call(obj) === "[object Array]";
3986
+ }
3987
+
3988
+ function has(obj, propName) {
3989
+ return Object.prototype.hasOwnProperty.call(obj, propName);
3990
+ }
3991
+
3992
+ },{}],19:[function(_dereq_,module,exports){
3993
+ "use strict";
3994
+
3995
+ exports.isNewLine = isNewLine;
3996
+ exports.__esModule = true;
3997
+ // Matches a whole line break (where CRLF is considered a single
3998
+ // line break). Used to count lines.
3999
+
4000
+ var lineBreak = /\r\n?|\n|\u2028|\u2029/;
4001
+ exports.lineBreak = lineBreak;
4002
+ var lineBreakG = new RegExp(lineBreak.source, "g");
4003
+
4004
+ exports.lineBreakG = lineBreakG;
4005
+
4006
+ function isNewLine(code) {
4007
+ return code === 10 || code === 13 || code === 8232 || code == 8233;
4008
+ }
4009
+
4010
+ var nonASCIIwhitespace = /[\u1680\u180e\u2000-\u200a\u202f\u205f\u3000\ufeff]/;
4011
+ exports.nonASCIIwhitespace = nonASCIIwhitespace;
4012
+
4013
+ },{}]},{},[1])(1)
4014
+ });