opal 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +11 -1
  3. data/lib/opal/cli.rb +9 -1
  4. data/lib/opal/cli_options.rb +12 -3
  5. data/lib/opal/cli_runners/nodejs.rb +3 -2
  6. data/lib/opal/version.rb +1 -1
  7. data/opal/corelib/kernel.rb +7 -0
  8. data/opal/corelib/runtime.js +4 -0
  9. data/spec/lib/cli_spec.rb +16 -0
  10. data/stdlib/nodejs.rb +1 -2
  11. data/stdlib/nodejs/{process.rb → kernel.rb} +7 -4
  12. data/stdlib/nodejs/node_modules/.bin/js-yaml +140 -0
  13. data/stdlib/nodejs/node_modules/glob/LICENSE +15 -0
  14. data/stdlib/nodejs/node_modules/glob/README.md +357 -0
  15. data/stdlib/nodejs/node_modules/glob/common.js +177 -0
  16. data/stdlib/nodejs/node_modules/glob/glob.js +649 -0
  17. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/.eslintrc +17 -0
  18. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/LICENSE +15 -0
  19. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/README.md +37 -0
  20. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/inflight.js +44 -0
  21. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
  22. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
  23. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +52 -0
  24. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
  25. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
  26. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/package.json +61 -0
  27. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/test.js +97 -0
  28. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  29. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/README.md +42 -0
  30. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  31. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  32. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/package.json +51 -0
  33. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/test.js +25 -0
  34. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.npmignore +1 -0
  35. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.travis.yml +4 -0
  36. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
  37. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/README.md +216 -0
  38. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/benchmark.js +15 -0
  39. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/browser.js +1181 -0
  40. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/minimatch.js +845 -0
  41. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +2 -0
  42. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +3 -0
  43. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +121 -0
  44. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  45. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  46. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +2 -0
  47. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +4 -0
  48. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  49. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +80 -0
  50. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  51. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +38 -0
  52. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +73 -0
  53. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +56 -0
  54. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +4 -0
  55. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  56. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  57. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  58. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  59. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +83 -0
  60. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  61. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +75 -0
  62. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +32 -0
  63. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +1075 -0
  64. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +182 -0
  65. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +9 -0
  66. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +10 -0
  67. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +24 -0
  68. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +15 -0
  69. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +16 -0
  70. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +10 -0
  71. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +13 -0
  72. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +7 -0
  73. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +50 -0
  74. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/package.json +60 -0
  75. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
  76. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/brace-expand.js +45 -0
  77. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
  78. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
  79. data/stdlib/nodejs/node_modules/glob/node_modules/once/LICENSE +27 -0
  80. data/stdlib/nodejs/node_modules/glob/node_modules/once/README.md +51 -0
  81. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  82. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
  83. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +52 -0
  84. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  85. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  86. data/stdlib/nodejs/node_modules/glob/node_modules/once/once.js +21 -0
  87. data/stdlib/nodejs/node_modules/glob/node_modules/once/package.json +60 -0
  88. data/stdlib/nodejs/node_modules/glob/node_modules/once/test/once.js +23 -0
  89. data/stdlib/nodejs/node_modules/glob/package.json +72 -0
  90. data/stdlib/nodejs/node_modules/glob/sync.js +409 -0
  91. data/stdlib/nodejs/node_modules/js-yaml/HISTORY.md +277 -0
  92. data/stdlib/nodejs/node_modules/js-yaml/LICENSE +21 -0
  93. data/stdlib/nodejs/node_modules/js-yaml/README.md +288 -0
  94. data/stdlib/nodejs/node_modules/js-yaml/bin/js-yaml.js +140 -0
  95. data/stdlib/nodejs/node_modules/js-yaml/bower.json +23 -0
  96. data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.js +3666 -0
  97. data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.min.js +3 -0
  98. data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.js +102 -0
  99. data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.yml +18 -0
  100. data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.js +31 -0
  101. data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.json +22 -0
  102. data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.js +18 -0
  103. data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.yml +197 -0
  104. data/stdlib/nodejs/node_modules/js-yaml/index.js +7 -0
  105. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml.js +39 -0
  106. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/common.js +62 -0
  107. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/dumper.js +554 -0
  108. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/exception.js +25 -0
  109. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/loader.js +1581 -0
  110. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/mark.js +78 -0
  111. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema.js +103 -0
  112. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
  113. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
  114. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
  115. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
  116. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
  117. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
  118. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/binary.js +133 -0
  119. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/bool.js +37 -0
  120. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/float.js +110 -0
  121. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/int.js +183 -0
  122. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/function.js +85 -0
  123. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +84 -0
  124. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +27 -0
  125. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
  126. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
  127. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/null.js +36 -0
  128. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/omap.js +56 -0
  129. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/pairs.js +61 -0
  130. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
  131. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/set.js +33 -0
  132. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
  133. data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +98 -0
  134. data/stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esparse +117 -0
  135. data/stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esvalidate +177 -0
  136. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/HISTORY.md +115 -0
  137. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/LICENSE +21 -0
  138. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/README.md +239 -0
  139. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/arguments.js +36 -0
  140. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/choice.js +22 -0
  141. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/constants.js +59 -0
  142. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/help.js +13 -0
  143. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/nargs.js +33 -0
  144. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/parents.js +28 -0
  145. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js +23 -0
  146. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js +49 -0
  147. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sum.js +35 -0
  148. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js +270 -0
  149. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/index.js +1 -0
  150. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action.js +146 -0
  151. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append.js +55 -0
  152. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js +47 -0
  153. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/count.js +40 -0
  154. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/help.js +48 -0
  155. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store.js +50 -0
  156. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js +43 -0
  157. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js +27 -0
  158. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js +26 -0
  159. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js +148 -0
  160. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/version.js +50 -0
  161. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action_container.js +481 -0
  162. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argparse.js +14 -0
  163. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js +50 -0
  164. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js +54 -0
  165. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js +75 -0
  166. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js +1168 -0
  167. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/const.js +18 -0
  168. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js +88 -0
  169. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js +798 -0
  170. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/namespace.js +77 -0
  171. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.npmignore +2 -0
  172. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.travis.yml +8 -0
  173. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/README.markdown +825 -0
  174. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/bower.json +33 -0
  175. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/component.json +11 -0
  176. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/foo.js +10 -0
  177. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/gulpfile.js +26 -0
  178. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js +673 -0
  179. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log +0 -0
  180. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/package.json +107 -0
  181. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/LICENSE +23 -0
  182. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/README.md +22 -0
  183. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/package.json +69 -0
  184. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore-min.js +6 -0
  185. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore.js +1415 -0
  186. data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/package.json +62 -0
  187. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/README.md +73 -0
  188. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esparse.js +117 -0
  189. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js +177 -0
  190. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/esprima.js +3908 -0
  191. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/package.json +69 -0
  192. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/compat.js +239 -0
  193. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/reflect.js +422 -0
  194. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/run.js +66 -0
  195. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/runner.js +387 -0
  196. data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/test.js +20238 -0
  197. data/stdlib/nodejs/node_modules/js-yaml/package.json +83 -0
  198. data/{package.json → stdlib/nodejs/package.json} +0 -3
  199. data/stdlib/phantomjs.rb +1 -6
  200. data/tasks/testing.rake +1 -4
  201. metadata +191 -6
  202. data/stdlib/nodejs/runtime.rb +0 -26
@@ -0,0 +1,66 @@
1
+ /*
2
+ Copyright (C) 2012 Yusuke Suzuki <utatane.tea@gmail.com>
3
+ Copyright (C) 2012 Ariya Hidayat <ariya.hidayat@gmail.com>
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ * Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ * Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in the
12
+ documentation and/or other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17
+ ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
18
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
+ */
25
+
26
+ /*jslint node:true */
27
+
28
+ (function () {
29
+ 'use strict';
30
+
31
+ var child = require('child_process'),
32
+ nodejs = '"' + process.execPath + '"',
33
+ ret = 0,
34
+ suites,
35
+ index;
36
+
37
+ suites = [
38
+ 'runner',
39
+ 'compat'
40
+ ];
41
+
42
+ function nextTest() {
43
+ var suite = suites[index];
44
+
45
+ if (index < suites.length) {
46
+ child.exec(nodejs + ' ./test/' + suite + '.js', function (err, stdout, stderr) {
47
+ if (stdout) {
48
+ process.stdout.write(suite + ': ' + stdout);
49
+ }
50
+ if (stderr) {
51
+ process.stderr.write(suite + ': ' + stderr);
52
+ }
53
+ if (err) {
54
+ ret = err.code;
55
+ }
56
+ index += 1;
57
+ nextTest();
58
+ });
59
+ } else {
60
+ process.exit(ret);
61
+ }
62
+ }
63
+
64
+ index = 0;
65
+ nextTest();
66
+ }());
@@ -0,0 +1,387 @@
1
+ /*
2
+ Copyright (C) 2012 Ariya Hidayat <ariya.hidayat@gmail.com>
3
+ Copyright (C) 2012 Joost-Wim Boekesteijn <joost-wim@boekesteijn.nl>
4
+ Copyright (C) 2012 Yusuke Suzuki <utatane.tea@gmail.com>
5
+ Copyright (C) 2012 Arpad Borsos <arpad.borsos@googlemail.com>
6
+ Copyright (C) 2011 Ariya Hidayat <ariya.hidayat@gmail.com>
7
+ Copyright (C) 2011 Yusuke Suzuki <utatane.tea@gmail.com>
8
+ Copyright (C) 2011 Arpad Borsos <arpad.borsos@googlemail.com>
9
+
10
+ Redistribution and use in source and binary forms, with or without
11
+ modification, are permitted provided that the following conditions are met:
12
+
13
+ * Redistributions of source code must retain the above copyright
14
+ notice, this list of conditions and the following disclaimer.
15
+ * Redistributions in binary form must reproduce the above copyright
16
+ notice, this list of conditions and the following disclaimer in the
17
+ documentation and/or other materials provided with the distribution.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
23
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ */
30
+
31
+ /*jslint browser:true node:true */
32
+ /*global esprima:true, testFixture:true */
33
+
34
+ var runTests;
35
+
36
+ // Special handling for regular expression literal since we need to
37
+ // convert it to a string literal, otherwise it will be decoded
38
+ // as object "{}" and the regular expression would be lost.
39
+ function adjustRegexLiteral(key, value) {
40
+ 'use strict';
41
+ if (key === 'value' && value instanceof RegExp) {
42
+ value = value.toString();
43
+ }
44
+ return value;
45
+ }
46
+
47
+ function NotMatchingError(expected, actual) {
48
+ 'use strict';
49
+ Error.call(this, 'Expected ');
50
+ this.expected = expected;
51
+ this.actual = actual;
52
+ }
53
+ NotMatchingError.prototype = new Error();
54
+
55
+ function errorToObject(e) {
56
+ 'use strict';
57
+ var msg = e.toString();
58
+
59
+ // Opera 9.64 produces an non-standard string in toString().
60
+ if (msg.substr(0, 6) !== 'Error:') {
61
+ if (typeof e.message === 'string') {
62
+ msg = 'Error: ' + e.message;
63
+ }
64
+ }
65
+
66
+ return {
67
+ index: e.index,
68
+ lineNumber: e.lineNumber,
69
+ column: e.column,
70
+ message: msg
71
+ };
72
+ }
73
+
74
+ function testParse(esprima, code, syntax) {
75
+ 'use strict';
76
+ var expected, tree, actual, options, StringObject, i, len, err;
77
+
78
+ // alias, so that JSLint does not complain.
79
+ StringObject = String;
80
+
81
+ options = {
82
+ comment: (typeof syntax.comments !== 'undefined'),
83
+ range: true,
84
+ loc: true,
85
+ tokens: (typeof syntax.tokens !== 'undefined'),
86
+ raw: true,
87
+ tolerant: (typeof syntax.errors !== 'undefined')
88
+ };
89
+
90
+ if (typeof syntax.tokens !== 'undefined') {
91
+ if (syntax.tokens.length > 0) {
92
+ options.range = (typeof syntax.tokens[0].range !== 'undefined');
93
+ options.loc = (typeof syntax.tokens[0].loc !== 'undefined');
94
+ }
95
+ }
96
+
97
+ if (typeof syntax.comments !== 'undefined') {
98
+ if (syntax.comments.length > 0) {
99
+ options.range = (typeof syntax.comments[0].range !== 'undefined');
100
+ options.loc = (typeof syntax.comments[0].loc !== 'undefined');
101
+ }
102
+ }
103
+
104
+ expected = JSON.stringify(syntax, null, 4);
105
+ try {
106
+ tree = esprima.parse(code, options);
107
+ tree = (options.comment || options.tokens || options.tolerant) ? tree : tree.body[0];
108
+
109
+ if (options.tolerant) {
110
+ for (i = 0, len = tree.errors.length; i < len; i += 1) {
111
+ tree.errors[i] = errorToObject(tree.errors[i]);
112
+ }
113
+ }
114
+
115
+ actual = JSON.stringify(tree, adjustRegexLiteral, 4);
116
+
117
+ // Only to ensure that there is no error when using string object.
118
+ esprima.parse(new StringObject(code), options);
119
+
120
+ } catch (e) {
121
+ throw new NotMatchingError(expected, e.toString());
122
+ }
123
+ if (expected !== actual) {
124
+ throw new NotMatchingError(expected, actual);
125
+ }
126
+
127
+ function filter(key, value) {
128
+ if (key === 'value' && value instanceof RegExp) {
129
+ value = value.toString();
130
+ }
131
+ return (key === 'loc' || key === 'range') ? undefined : value;
132
+ }
133
+
134
+ if (options.tolerant) {
135
+ return;
136
+ }
137
+
138
+
139
+ // Check again without any location info.
140
+ options.range = false;
141
+ options.loc = false;
142
+ expected = JSON.stringify(syntax, filter, 4);
143
+ try {
144
+ tree = esprima.parse(code, options);
145
+ tree = (options.comment || options.tokens) ? tree : tree.body[0];
146
+
147
+ if (options.tolerant) {
148
+ for (i = 0, len = tree.errors.length; i < len; i += 1) {
149
+ tree.errors[i] = errorToObject(tree.errors[i]);
150
+ }
151
+ }
152
+
153
+ actual = JSON.stringify(tree, filter, 4);
154
+ } catch (e) {
155
+ throw new NotMatchingError(expected, e.toString());
156
+ }
157
+ if (expected !== actual) {
158
+ throw new NotMatchingError(expected, actual);
159
+ }
160
+ }
161
+
162
+ function testError(esprima, code, exception) {
163
+ 'use strict';
164
+ var i, options, expected, actual, handleInvalidRegexFlag;
165
+
166
+ // Different parsing options should give the same error.
167
+ options = [
168
+ {},
169
+ { comment: true },
170
+ { raw: true },
171
+ { raw: true, comment: true }
172
+ ];
173
+
174
+ // If handleInvalidRegexFlag is true, an invalid flag in a regular expression
175
+ // will throw an exception. In some old version V8, this is not the case
176
+ // and hence handleInvalidRegexFlag is false.
177
+ handleInvalidRegexFlag = false;
178
+ try {
179
+ 'test'.match(new RegExp('[a-z]', 'x'));
180
+ } catch (e) {
181
+ handleInvalidRegexFlag = true;
182
+ }
183
+
184
+ expected = JSON.stringify(exception);
185
+
186
+ for (i = 0; i < options.length; i += 1) {
187
+
188
+ try {
189
+ esprima.parse(code, options[i]);
190
+ } catch (e) {
191
+ actual = JSON.stringify(errorToObject(e));
192
+ }
193
+
194
+ if (expected !== actual) {
195
+
196
+ // Compensate for old V8 which does not handle invalid flag.
197
+ if (exception.message.indexOf('Invalid regular expression') > 0) {
198
+ if (typeof actual === 'undefined' && !handleInvalidRegexFlag) {
199
+ return;
200
+ }
201
+ }
202
+
203
+ throw new NotMatchingError(expected, actual);
204
+ }
205
+
206
+ }
207
+ }
208
+
209
+ function testAPI(esprima, code, result) {
210
+ 'use strict';
211
+ var expected, res, actual;
212
+
213
+ expected = JSON.stringify(result.result, null, 4);
214
+ try {
215
+ if (typeof result.property !== 'undefined') {
216
+ res = esprima[result.property];
217
+ } else {
218
+ res = esprima[result.call].apply(esprima, result.args);
219
+ }
220
+ actual = JSON.stringify(res, adjustRegexLiteral, 4);
221
+ } catch (e) {
222
+ throw new NotMatchingError(expected, e.toString());
223
+ }
224
+ if (expected !== actual) {
225
+ throw new NotMatchingError(expected, actual);
226
+ }
227
+ }
228
+
229
+ function runTest(esprima, code, result) {
230
+ 'use strict';
231
+ if (result.hasOwnProperty('lineNumber')) {
232
+ testError(esprima, code, result);
233
+ } else if (result.hasOwnProperty('result')) {
234
+ testAPI(esprima, code, result);
235
+ } else {
236
+ testParse(esprima, code, result);
237
+ }
238
+ }
239
+
240
+ if (typeof window !== 'undefined') {
241
+ // Run all tests in a browser environment.
242
+ runTests = function () {
243
+ 'use strict';
244
+ var total = 0,
245
+ failures = 0,
246
+ category,
247
+ fixture,
248
+ source,
249
+ tick,
250
+ expected,
251
+ index,
252
+ len;
253
+
254
+ function setText(el, str) {
255
+ if (typeof el.innerText === 'string') {
256
+ el.innerText = str;
257
+ } else {
258
+ el.textContent = str;
259
+ }
260
+ }
261
+
262
+ function startCategory(category) {
263
+ var report, e;
264
+ report = document.getElementById('report');
265
+ e = document.createElement('h4');
266
+ setText(e, category);
267
+ report.appendChild(e);
268
+ }
269
+
270
+ function reportSuccess(code) {
271
+ var report, e;
272
+ report = document.getElementById('report');
273
+ e = document.createElement('pre');
274
+ e.setAttribute('class', 'code');
275
+ setText(e, code);
276
+ report.appendChild(e);
277
+ }
278
+
279
+ function reportFailure(code, expected, actual) {
280
+ var report, e;
281
+
282
+ report = document.getElementById('report');
283
+
284
+ e = document.createElement('p');
285
+ setText(e, 'Code:');
286
+ report.appendChild(e);
287
+
288
+ e = document.createElement('pre');
289
+ e.setAttribute('class', 'code');
290
+ setText(e, code);
291
+ report.appendChild(e);
292
+
293
+ e = document.createElement('p');
294
+ setText(e, 'Expected');
295
+ report.appendChild(e);
296
+
297
+ e = document.createElement('pre');
298
+ e.setAttribute('class', 'expected');
299
+ setText(e, expected);
300
+ report.appendChild(e);
301
+
302
+ e = document.createElement('p');
303
+ setText(e, 'Actual');
304
+ report.appendChild(e);
305
+
306
+ e = document.createElement('pre');
307
+ e.setAttribute('class', 'actual');
308
+ setText(e, actual);
309
+ report.appendChild(e);
310
+ }
311
+
312
+ setText(document.getElementById('version'), esprima.version);
313
+
314
+ tick = new Date();
315
+ for (category in testFixture) {
316
+ if (testFixture.hasOwnProperty(category)) {
317
+ startCategory(category);
318
+ fixture = testFixture[category];
319
+ for (source in fixture) {
320
+ if (fixture.hasOwnProperty(source)) {
321
+ expected = fixture[source];
322
+ total += 1;
323
+ try {
324
+ runTest(esprima, source, expected);
325
+ reportSuccess(source, JSON.stringify(expected, null, 4));
326
+ } catch (e) {
327
+ failures += 1;
328
+ reportFailure(source, e.expected, e.actual);
329
+ }
330
+ }
331
+ }
332
+ }
333
+ }
334
+ tick = (new Date()) - tick;
335
+
336
+ if (failures > 0) {
337
+ setText(document.getElementById('status'), total + ' tests. ' +
338
+ 'Failures: ' + failures + '. ' + tick + ' ms');
339
+ } else {
340
+ setText(document.getElementById('status'), total + ' tests. ' +
341
+ 'No failure. ' + tick + ' ms');
342
+ }
343
+ };
344
+ } else {
345
+ (function () {
346
+ 'use strict';
347
+
348
+ var esprima = require('../esprima'),
349
+ vm = require('vm'),
350
+ fs = require('fs'),
351
+ total = 0,
352
+ failures = [],
353
+ tick = new Date(),
354
+ expected,
355
+ header;
356
+
357
+ vm.runInThisContext(fs.readFileSync(__dirname + '/test.js', 'utf-8'));
358
+
359
+ Object.keys(testFixture).forEach(function (category) {
360
+ Object.keys(testFixture[category]).forEach(function (source) {
361
+ total += 1;
362
+ expected = testFixture[category][source];
363
+ try {
364
+ runTest(esprima, source, expected);
365
+ } catch (e) {
366
+ e.source = source;
367
+ failures.push(e);
368
+ }
369
+ });
370
+ });
371
+ tick = (new Date()) - tick;
372
+
373
+ header = total + ' tests. ' + failures.length + ' failures. ' +
374
+ tick + ' ms';
375
+ if (failures.length) {
376
+ console.error(header);
377
+ failures.forEach(function (failure) {
378
+ console.error(failure.source + ': Expected\n ' +
379
+ failure.expected.split('\n').join('\n ') +
380
+ '\nto match\n ' + failure.actual);
381
+ });
382
+ } else {
383
+ console.log(header);
384
+ }
385
+ process.exit(failures.length === 0 ? 0 : 1);
386
+ }());
387
+ }