mustang 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. data/.rspec +1 -0
  2. data/Isolate +9 -0
  3. data/README.md +6 -12
  4. data/Rakefile +30 -4
  5. data/TODO.md +9 -0
  6. data/ext/v8/extconf.rb +56 -0
  7. data/ext/v8/v8.cpp +37 -0
  8. data/ext/v8/v8_array.cpp +161 -0
  9. data/ext/v8/v8_array.h +17 -0
  10. data/ext/v8/v8_base.cpp +147 -0
  11. data/ext/v8/v8_base.h +23 -0
  12. data/ext/v8/v8_cast.cpp +151 -0
  13. data/ext/v8/v8_cast.h +64 -0
  14. data/ext/v8/v8_context.cpp +174 -0
  15. data/ext/v8/v8_context.h +12 -0
  16. data/ext/v8/v8_date.cpp +61 -0
  17. data/ext/v8/v8_date.h +16 -0
  18. data/ext/v8/v8_errors.cpp +147 -0
  19. data/ext/v8/v8_errors.h +19 -0
  20. data/ext/v8/v8_external.cpp +66 -0
  21. data/ext/v8/v8_external.h +16 -0
  22. data/ext/v8/v8_function.cpp +182 -0
  23. data/ext/v8/v8_function.h +14 -0
  24. data/ext/v8/v8_integer.cpp +70 -0
  25. data/ext/v8/v8_integer.h +16 -0
  26. data/ext/v8/v8_macros.h +30 -0
  27. data/ext/v8/v8_main.cpp +53 -0
  28. data/ext/v8/v8_main.h +13 -0
  29. data/ext/v8/v8_number.cpp +62 -0
  30. data/ext/v8/v8_number.h +16 -0
  31. data/ext/v8/v8_object.cpp +172 -0
  32. data/ext/v8/v8_object.h +17 -0
  33. data/ext/v8/v8_ref.cpp +72 -0
  34. data/ext/v8/v8_ref.h +43 -0
  35. data/ext/v8/v8_regexp.cpp +148 -0
  36. data/ext/v8/v8_regexp.h +16 -0
  37. data/ext/v8/v8_string.cpp +78 -0
  38. data/ext/v8/v8_string.h +16 -0
  39. data/ext/v8/v8_value.cpp +370 -0
  40. data/ext/v8/v8_value.h +19 -0
  41. data/gemspec.yml +2 -1
  42. data/lib/core_ext/class.rb +14 -0
  43. data/lib/core_ext/object.rb +12 -0
  44. data/lib/core_ext/symbol.rb +23 -0
  45. data/lib/mustang.rb +44 -0
  46. data/lib/mustang/context.rb +69 -0
  47. data/lib/mustang/errors.rb +36 -0
  48. data/lib/support/delegated.rb +25 -0
  49. data/lib/v8/array.rb +21 -0
  50. data/lib/v8/context.rb +13 -0
  51. data/lib/v8/date.rb +20 -0
  52. data/lib/v8/error.rb +15 -0
  53. data/lib/v8/external.rb +16 -0
  54. data/lib/v8/function.rb +11 -0
  55. data/lib/v8/integer.rb +16 -0
  56. data/lib/v8/number.rb +16 -0
  57. data/lib/v8/object.rb +66 -0
  58. data/lib/v8/regexp.rb +23 -0
  59. data/lib/v8/string.rb +27 -0
  60. data/mustang.gemspec +3 -0
  61. data/spec/core_ext/class_spec.rb +19 -0
  62. data/spec/core_ext/object_spec.rb +19 -0
  63. data/spec/core_ext/symbol_spec.rb +27 -0
  64. data/spec/fixtures/test1.js +2 -0
  65. data/spec/fixtures/test2.js +2 -0
  66. data/spec/spec_helper.rb +20 -0
  67. data/spec/v8/array_spec.rb +88 -0
  68. data/spec/v8/cast_spec.rb +151 -0
  69. data/spec/v8/context_spec.rb +78 -0
  70. data/spec/v8/data_spec.rb +39 -0
  71. data/spec/v8/date_spec.rb +45 -0
  72. data/spec/v8/empty_spec.rb +27 -0
  73. data/spec/v8/errors_spec.rb +142 -0
  74. data/spec/v8/external_spec.rb +44 -0
  75. data/spec/v8/function_spec.rb +170 -0
  76. data/spec/v8/integer_spec.rb +41 -0
  77. data/spec/v8/main_spec.rb +18 -0
  78. data/spec/v8/null_spec.rb +27 -0
  79. data/spec/v8/number_spec.rb +40 -0
  80. data/spec/v8/object_spec.rb +79 -0
  81. data/spec/v8/primitive_spec.rb +9 -0
  82. data/spec/v8/regexp_spec.rb +65 -0
  83. data/spec/v8/string_spec.rb +48 -0
  84. data/spec/v8/undefined_spec.rb +27 -0
  85. data/spec/v8/value_spec.rb +215 -0
  86. data/vendor/v8/.gitignore +2 -0
  87. data/vendor/v8/AUTHORS +3 -1
  88. data/vendor/v8/ChangeLog +117 -0
  89. data/vendor/v8/SConstruct +334 -53
  90. data/vendor/v8/include/v8-debug.h +21 -11
  91. data/vendor/v8/include/v8-preparser.h +1 -1
  92. data/vendor/v8/include/v8-profiler.h +122 -43
  93. data/vendor/v8/include/v8-testing.h +5 -0
  94. data/vendor/v8/include/v8.h +171 -17
  95. data/vendor/v8/preparser/SConscript +38 -0
  96. data/vendor/v8/preparser/preparser-process.cc +77 -114
  97. data/vendor/v8/samples/shell.cc +232 -46
  98. data/vendor/v8/src/SConscript +29 -5
  99. data/vendor/v8/src/accessors.cc +70 -211
  100. data/vendor/v8/{test/cctest/test-mips.cc → src/allocation-inl.h} +15 -18
  101. data/vendor/v8/src/allocation.cc +0 -82
  102. data/vendor/v8/src/allocation.h +9 -42
  103. data/vendor/v8/src/api.cc +1645 -1156
  104. data/vendor/v8/src/api.h +76 -12
  105. data/vendor/v8/src/apiutils.h +0 -7
  106. data/vendor/v8/src/arguments.h +15 -4
  107. data/vendor/v8/src/arm/assembler-arm-inl.h +10 -9
  108. data/vendor/v8/src/arm/assembler-arm.cc +62 -23
  109. data/vendor/v8/src/arm/assembler-arm.h +76 -11
  110. data/vendor/v8/src/arm/builtins-arm.cc +39 -33
  111. data/vendor/v8/src/arm/code-stubs-arm.cc +1182 -402
  112. data/vendor/v8/src/arm/code-stubs-arm.h +20 -54
  113. data/vendor/v8/src/arm/codegen-arm.cc +159 -106
  114. data/vendor/v8/src/arm/codegen-arm.h +6 -6
  115. data/vendor/v8/src/arm/constants-arm.h +16 -1
  116. data/vendor/v8/src/arm/cpu-arm.cc +7 -5
  117. data/vendor/v8/src/arm/debug-arm.cc +6 -4
  118. data/vendor/v8/src/arm/deoptimizer-arm.cc +51 -14
  119. data/vendor/v8/src/arm/disasm-arm.cc +47 -15
  120. data/vendor/v8/src/arm/frames-arm.h +1 -1
  121. data/vendor/v8/src/arm/full-codegen-arm.cc +724 -408
  122. data/vendor/v8/src/arm/ic-arm.cc +90 -85
  123. data/vendor/v8/src/arm/lithium-arm.cc +140 -69
  124. data/vendor/v8/src/arm/lithium-arm.h +161 -46
  125. data/vendor/v8/src/arm/lithium-codegen-arm.cc +567 -297
  126. data/vendor/v8/src/arm/lithium-codegen-arm.h +21 -9
  127. data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +2 -0
  128. data/vendor/v8/src/arm/macro-assembler-arm.cc +457 -96
  129. data/vendor/v8/src/arm/macro-assembler-arm.h +115 -18
  130. data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +20 -13
  131. data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +1 -0
  132. data/vendor/v8/src/arm/simulator-arm.cc +184 -101
  133. data/vendor/v8/src/arm/simulator-arm.h +26 -21
  134. data/vendor/v8/src/arm/stub-cache-arm.cc +450 -467
  135. data/vendor/v8/src/arm/virtual-frame-arm.cc +14 -12
  136. data/vendor/v8/src/arm/virtual-frame-arm.h +11 -8
  137. data/vendor/v8/src/array.js +35 -18
  138. data/vendor/v8/src/assembler.cc +186 -92
  139. data/vendor/v8/src/assembler.h +106 -69
  140. data/vendor/v8/src/ast-inl.h +5 -0
  141. data/vendor/v8/src/ast.cc +46 -35
  142. data/vendor/v8/src/ast.h +107 -50
  143. data/vendor/v8/src/atomicops.h +2 -0
  144. data/vendor/v8/src/atomicops_internals_mips_gcc.h +169 -0
  145. data/vendor/v8/src/bootstrapper.cc +649 -399
  146. data/vendor/v8/src/bootstrapper.h +94 -27
  147. data/vendor/v8/src/builtins.cc +359 -227
  148. data/vendor/v8/src/builtins.h +157 -123
  149. data/vendor/v8/src/checks.cc +2 -2
  150. data/vendor/v8/src/checks.h +4 -0
  151. data/vendor/v8/src/code-stubs.cc +27 -17
  152. data/vendor/v8/src/code-stubs.h +38 -17
  153. data/vendor/v8/src/codegen-inl.h +5 -1
  154. data/vendor/v8/src/codegen.cc +27 -17
  155. data/vendor/v8/src/codegen.h +9 -9
  156. data/vendor/v8/src/compilation-cache.cc +92 -206
  157. data/vendor/v8/src/compilation-cache.h +205 -30
  158. data/vendor/v8/src/compiler.cc +107 -120
  159. data/vendor/v8/src/compiler.h +17 -2
  160. data/vendor/v8/src/contexts.cc +22 -15
  161. data/vendor/v8/src/contexts.h +14 -8
  162. data/vendor/v8/src/conversions.cc +86 -30
  163. data/vendor/v8/src/counters.cc +19 -4
  164. data/vendor/v8/src/counters.h +28 -16
  165. data/vendor/v8/src/cpu-profiler-inl.h +4 -3
  166. data/vendor/v8/src/cpu-profiler.cc +123 -72
  167. data/vendor/v8/src/cpu-profiler.h +33 -19
  168. data/vendor/v8/src/cpu.h +2 -0
  169. data/vendor/v8/src/d8-debug.cc +3 -3
  170. data/vendor/v8/src/d8-debug.h +7 -6
  171. data/vendor/v8/src/d8-posix.cc +2 -0
  172. data/vendor/v8/src/d8.cc +22 -12
  173. data/vendor/v8/src/d8.gyp +3 -0
  174. data/vendor/v8/src/d8.js +618 -0
  175. data/vendor/v8/src/data-flow.h +3 -3
  176. data/vendor/v8/src/dateparser.h +4 -2
  177. data/vendor/v8/src/debug-agent.cc +10 -9
  178. data/vendor/v8/src/debug-agent.h +9 -11
  179. data/vendor/v8/src/debug-debugger.js +121 -0
  180. data/vendor/v8/src/debug.cc +331 -227
  181. data/vendor/v8/src/debug.h +248 -219
  182. data/vendor/v8/src/deoptimizer.cc +173 -62
  183. data/vendor/v8/src/deoptimizer.h +119 -19
  184. data/vendor/v8/src/disasm.h +3 -0
  185. data/vendor/v8/src/disassembler.cc +10 -9
  186. data/vendor/v8/src/execution.cc +185 -129
  187. data/vendor/v8/src/execution.h +47 -78
  188. data/vendor/v8/src/extensions/experimental/break-iterator.cc +250 -0
  189. data/vendor/v8/src/extensions/experimental/break-iterator.h +89 -0
  190. data/vendor/v8/src/extensions/experimental/experimental.gyp +2 -0
  191. data/vendor/v8/src/extensions/experimental/i18n-extension.cc +22 -2
  192. data/vendor/v8/src/extensions/externalize-string-extension.cc +2 -2
  193. data/vendor/v8/src/extensions/gc-extension.cc +1 -1
  194. data/vendor/v8/src/factory.cc +261 -154
  195. data/vendor/v8/src/factory.h +162 -158
  196. data/vendor/v8/src/flag-definitions.h +17 -11
  197. data/vendor/v8/src/frame-element.cc +0 -5
  198. data/vendor/v8/src/frame-element.h +9 -13
  199. data/vendor/v8/src/frames-inl.h +7 -0
  200. data/vendor/v8/src/frames.cc +56 -46
  201. data/vendor/v8/src/frames.h +36 -25
  202. data/vendor/v8/src/full-codegen.cc +15 -24
  203. data/vendor/v8/src/full-codegen.h +13 -41
  204. data/vendor/v8/src/func-name-inferrer.cc +7 -6
  205. data/vendor/v8/src/func-name-inferrer.h +1 -1
  206. data/vendor/v8/src/gdb-jit.cc +1 -0
  207. data/vendor/v8/src/global-handles.cc +118 -56
  208. data/vendor/v8/src/global-handles.h +98 -40
  209. data/vendor/v8/src/globals.h +2 -2
  210. data/vendor/v8/src/handles-inl.h +106 -9
  211. data/vendor/v8/src/handles.cc +220 -157
  212. data/vendor/v8/src/handles.h +38 -59
  213. data/vendor/v8/src/hashmap.h +3 -3
  214. data/vendor/v8/src/heap-inl.h +141 -25
  215. data/vendor/v8/src/heap-profiler.cc +117 -63
  216. data/vendor/v8/src/heap-profiler.h +38 -21
  217. data/vendor/v8/src/heap.cc +805 -564
  218. data/vendor/v8/src/heap.h +640 -594
  219. data/vendor/v8/src/hydrogen-instructions.cc +216 -73
  220. data/vendor/v8/src/hydrogen-instructions.h +259 -124
  221. data/vendor/v8/src/hydrogen.cc +996 -1171
  222. data/vendor/v8/src/hydrogen.h +163 -144
  223. data/vendor/v8/src/ia32/assembler-ia32-inl.h +12 -11
  224. data/vendor/v8/src/ia32/assembler-ia32.cc +85 -39
  225. data/vendor/v8/src/ia32/assembler-ia32.h +82 -16
  226. data/vendor/v8/src/ia32/builtins-ia32.cc +64 -58
  227. data/vendor/v8/src/ia32/code-stubs-ia32.cc +248 -324
  228. data/vendor/v8/src/ia32/code-stubs-ia32.h +3 -44
  229. data/vendor/v8/src/ia32/codegen-ia32.cc +217 -165
  230. data/vendor/v8/src/ia32/codegen-ia32.h +3 -0
  231. data/vendor/v8/src/ia32/cpu-ia32.cc +6 -5
  232. data/vendor/v8/src/ia32/debug-ia32.cc +8 -5
  233. data/vendor/v8/src/ia32/deoptimizer-ia32.cc +124 -14
  234. data/vendor/v8/src/ia32/disasm-ia32.cc +85 -62
  235. data/vendor/v8/src/ia32/frames-ia32.h +1 -1
  236. data/vendor/v8/src/ia32/full-codegen-ia32.cc +348 -435
  237. data/vendor/v8/src/ia32/ic-ia32.cc +91 -91
  238. data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +500 -255
  239. data/vendor/v8/src/ia32/lithium-codegen-ia32.h +13 -4
  240. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +6 -0
  241. data/vendor/v8/src/ia32/lithium-ia32.cc +122 -45
  242. data/vendor/v8/src/ia32/lithium-ia32.h +128 -41
  243. data/vendor/v8/src/ia32/macro-assembler-ia32.cc +109 -84
  244. data/vendor/v8/src/ia32/macro-assembler-ia32.h +18 -9
  245. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +26 -15
  246. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +1 -0
  247. data/vendor/v8/src/ia32/register-allocator-ia32.cc +30 -30
  248. data/vendor/v8/src/ia32/simulator-ia32.h +4 -4
  249. data/vendor/v8/src/ia32/stub-cache-ia32.cc +383 -400
  250. data/vendor/v8/src/ia32/virtual-frame-ia32.cc +36 -13
  251. data/vendor/v8/src/ia32/virtual-frame-ia32.h +11 -5
  252. data/vendor/v8/src/ic-inl.h +12 -2
  253. data/vendor/v8/src/ic.cc +304 -221
  254. data/vendor/v8/src/ic.h +115 -58
  255. data/vendor/v8/src/interpreter-irregexp.cc +25 -21
  256. data/vendor/v8/src/interpreter-irregexp.h +2 -1
  257. data/vendor/v8/src/isolate.cc +883 -0
  258. data/vendor/v8/src/isolate.h +1304 -0
  259. data/vendor/v8/src/json.js +10 -10
  260. data/vendor/v8/src/jsregexp.cc +111 -80
  261. data/vendor/v8/src/jsregexp.h +6 -7
  262. data/vendor/v8/src/jump-target-heavy.cc +5 -8
  263. data/vendor/v8/src/jump-target-heavy.h +0 -6
  264. data/vendor/v8/src/jump-target-inl.h +1 -1
  265. data/vendor/v8/src/jump-target-light.cc +3 -3
  266. data/vendor/v8/src/lithium-allocator-inl.h +2 -0
  267. data/vendor/v8/src/lithium-allocator.cc +42 -30
  268. data/vendor/v8/src/lithium-allocator.h +8 -22
  269. data/vendor/v8/src/lithium.cc +1 -0
  270. data/vendor/v8/src/liveedit.cc +141 -99
  271. data/vendor/v8/src/liveedit.h +7 -2
  272. data/vendor/v8/src/liveobjectlist-inl.h +90 -0
  273. data/vendor/v8/src/liveobjectlist.cc +2537 -1
  274. data/vendor/v8/src/liveobjectlist.h +245 -35
  275. data/vendor/v8/src/log-utils.cc +122 -35
  276. data/vendor/v8/src/log-utils.h +33 -36
  277. data/vendor/v8/src/log.cc +299 -241
  278. data/vendor/v8/src/log.h +177 -110
  279. data/vendor/v8/src/mark-compact.cc +612 -470
  280. data/vendor/v8/src/mark-compact.h +153 -80
  281. data/vendor/v8/src/messages.cc +16 -14
  282. data/vendor/v8/src/messages.js +30 -7
  283. data/vendor/v8/src/mips/assembler-mips-inl.h +155 -35
  284. data/vendor/v8/src/mips/assembler-mips.cc +1093 -219
  285. data/vendor/v8/src/mips/assembler-mips.h +552 -153
  286. data/vendor/v8/src/mips/builtins-mips.cc +43 -100
  287. data/vendor/v8/src/mips/code-stubs-mips.cc +752 -0
  288. data/vendor/v8/src/mips/code-stubs-mips.h +511 -0
  289. data/vendor/v8/src/mips/codegen-mips-inl.h +8 -14
  290. data/vendor/v8/src/mips/codegen-mips.cc +672 -896
  291. data/vendor/v8/src/mips/codegen-mips.h +271 -69
  292. data/vendor/v8/src/mips/constants-mips.cc +44 -20
  293. data/vendor/v8/src/mips/constants-mips.h +238 -40
  294. data/vendor/v8/src/mips/cpu-mips.cc +20 -3
  295. data/vendor/v8/src/mips/debug-mips.cc +35 -7
  296. data/vendor/v8/src/mips/deoptimizer-mips.cc +91 -0
  297. data/vendor/v8/src/mips/disasm-mips.cc +329 -93
  298. data/vendor/v8/src/mips/frames-mips.cc +2 -50
  299. data/vendor/v8/src/mips/frames-mips.h +24 -9
  300. data/vendor/v8/src/mips/full-codegen-mips.cc +473 -23
  301. data/vendor/v8/src/mips/ic-mips.cc +81 -45
  302. data/vendor/v8/src/mips/jump-target-mips.cc +11 -106
  303. data/vendor/v8/src/mips/lithium-codegen-mips.h +65 -0
  304. data/vendor/v8/src/mips/lithium-mips.h +304 -0
  305. data/vendor/v8/src/mips/macro-assembler-mips.cc +2391 -390
  306. data/vendor/v8/src/mips/macro-assembler-mips.h +718 -121
  307. data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
  308. data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
  309. data/vendor/v8/src/mips/register-allocator-mips-inl.h +0 -3
  310. data/vendor/v8/src/mips/register-allocator-mips.h +3 -2
  311. data/vendor/v8/src/mips/simulator-mips.cc +1009 -221
  312. data/vendor/v8/src/mips/simulator-mips.h +119 -36
  313. data/vendor/v8/src/mips/stub-cache-mips.cc +331 -148
  314. data/vendor/v8/src/mips/{fast-codegen-mips.cc → virtual-frame-mips-inl.h} +11 -30
  315. data/vendor/v8/src/mips/virtual-frame-mips.cc +137 -149
  316. data/vendor/v8/src/mips/virtual-frame-mips.h +294 -312
  317. data/vendor/v8/src/mirror-debugger.js +9 -8
  318. data/vendor/v8/src/mksnapshot.cc +2 -2
  319. data/vendor/v8/src/objects-debug.cc +16 -16
  320. data/vendor/v8/src/objects-inl.h +421 -195
  321. data/vendor/v8/src/objects-printer.cc +7 -7
  322. data/vendor/v8/src/objects-visiting.cc +1 -1
  323. data/vendor/v8/src/objects-visiting.h +33 -12
  324. data/vendor/v8/src/objects.cc +935 -658
  325. data/vendor/v8/src/objects.h +234 -139
  326. data/vendor/v8/src/parser.cc +484 -439
  327. data/vendor/v8/src/parser.h +35 -14
  328. data/vendor/v8/src/platform-cygwin.cc +173 -107
  329. data/vendor/v8/src/platform-freebsd.cc +224 -72
  330. data/vendor/v8/src/platform-linux.cc +234 -95
  331. data/vendor/v8/src/platform-macos.cc +215 -82
  332. data/vendor/v8/src/platform-nullos.cc +9 -3
  333. data/vendor/v8/src/platform-openbsd.cc +22 -7
  334. data/vendor/v8/src/platform-posix.cc +30 -5
  335. data/vendor/v8/src/platform-solaris.cc +120 -38
  336. data/vendor/v8/src/platform-tls-mac.h +62 -0
  337. data/vendor/v8/src/platform-tls-win32.h +62 -0
  338. data/vendor/v8/src/platform-tls.h +50 -0
  339. data/vendor/v8/src/platform-win32.cc +195 -97
  340. data/vendor/v8/src/platform.h +72 -15
  341. data/vendor/v8/src/preparse-data.cc +2 -0
  342. data/vendor/v8/src/preparser-api.cc +8 -2
  343. data/vendor/v8/src/preparser.cc +1 -1
  344. data/vendor/v8/src/prettyprinter.cc +43 -52
  345. data/vendor/v8/src/prettyprinter.h +1 -1
  346. data/vendor/v8/src/profile-generator-inl.h +0 -28
  347. data/vendor/v8/src/profile-generator.cc +942 -685
  348. data/vendor/v8/src/profile-generator.h +210 -176
  349. data/vendor/v8/src/property.cc +6 -0
  350. data/vendor/v8/src/property.h +14 -3
  351. data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +1 -1
  352. data/vendor/v8/src/regexp-macro-assembler.cc +28 -19
  353. data/vendor/v8/src/regexp-macro-assembler.h +11 -6
  354. data/vendor/v8/src/regexp-stack.cc +18 -10
  355. data/vendor/v8/src/regexp-stack.h +45 -21
  356. data/vendor/v8/src/regexp.js +3 -3
  357. data/vendor/v8/src/register-allocator-inl.h +3 -3
  358. data/vendor/v8/src/register-allocator.cc +1 -7
  359. data/vendor/v8/src/register-allocator.h +5 -15
  360. data/vendor/v8/src/rewriter.cc +2 -1
  361. data/vendor/v8/src/runtime-profiler.cc +158 -128
  362. data/vendor/v8/src/runtime-profiler.h +131 -15
  363. data/vendor/v8/src/runtime.cc +2409 -1692
  364. data/vendor/v8/src/runtime.h +93 -17
  365. data/vendor/v8/src/safepoint-table.cc +3 -0
  366. data/vendor/v8/src/safepoint-table.h +9 -3
  367. data/vendor/v8/src/scanner-base.cc +21 -28
  368. data/vendor/v8/src/scanner-base.h +22 -11
  369. data/vendor/v8/src/scanner.cc +3 -5
  370. data/vendor/v8/src/scanner.h +4 -2
  371. data/vendor/v8/src/scopeinfo.cc +11 -16
  372. data/vendor/v8/src/scopeinfo.h +26 -15
  373. data/vendor/v8/src/scopes.cc +67 -37
  374. data/vendor/v8/src/scopes.h +26 -12
  375. data/vendor/v8/src/serialize.cc +193 -154
  376. data/vendor/v8/src/serialize.h +41 -36
  377. data/vendor/v8/src/small-pointer-list.h +163 -0
  378. data/vendor/v8/src/snapshot-common.cc +1 -1
  379. data/vendor/v8/src/snapshot.h +3 -1
  380. data/vendor/v8/src/spaces-inl.h +30 -25
  381. data/vendor/v8/src/spaces.cc +263 -370
  382. data/vendor/v8/src/spaces.h +178 -166
  383. data/vendor/v8/src/string-search.cc +4 -3
  384. data/vendor/v8/src/string-search.h +21 -20
  385. data/vendor/v8/src/string-stream.cc +32 -24
  386. data/vendor/v8/src/string.js +7 -7
  387. data/vendor/v8/src/stub-cache.cc +324 -248
  388. data/vendor/v8/src/stub-cache.h +181 -155
  389. data/vendor/v8/src/token.cc +3 -3
  390. data/vendor/v8/src/token.h +3 -3
  391. data/vendor/v8/src/top.cc +218 -390
  392. data/vendor/v8/src/type-info.cc +98 -32
  393. data/vendor/v8/src/type-info.h +10 -3
  394. data/vendor/v8/src/unicode.cc +1 -1
  395. data/vendor/v8/src/unicode.h +1 -1
  396. data/vendor/v8/src/utils.h +3 -0
  397. data/vendor/v8/src/v8-counters.cc +18 -11
  398. data/vendor/v8/src/v8-counters.h +34 -13
  399. data/vendor/v8/src/v8.cc +66 -121
  400. data/vendor/v8/src/v8.h +7 -4
  401. data/vendor/v8/src/v8globals.h +18 -12
  402. data/vendor/v8/src/{memory.h → v8memory.h} +0 -0
  403. data/vendor/v8/src/v8natives.js +59 -18
  404. data/vendor/v8/src/v8threads.cc +127 -114
  405. data/vendor/v8/src/v8threads.h +42 -35
  406. data/vendor/v8/src/v8utils.h +2 -39
  407. data/vendor/v8/src/variables.h +1 -1
  408. data/vendor/v8/src/version.cc +26 -5
  409. data/vendor/v8/src/version.h +4 -0
  410. data/vendor/v8/src/virtual-frame-heavy-inl.h +2 -4
  411. data/vendor/v8/src/virtual-frame-light-inl.h +5 -4
  412. data/vendor/v8/src/vm-state-inl.h +21 -17
  413. data/vendor/v8/src/vm-state.h +7 -5
  414. data/vendor/v8/src/win32-headers.h +1 -0
  415. data/vendor/v8/src/x64/assembler-x64-inl.h +12 -11
  416. data/vendor/v8/src/x64/assembler-x64.cc +80 -40
  417. data/vendor/v8/src/x64/assembler-x64.h +67 -17
  418. data/vendor/v8/src/x64/builtins-x64.cc +34 -33
  419. data/vendor/v8/src/x64/code-stubs-x64.cc +636 -377
  420. data/vendor/v8/src/x64/code-stubs-x64.h +14 -48
  421. data/vendor/v8/src/x64/codegen-x64-inl.h +1 -1
  422. data/vendor/v8/src/x64/codegen-x64.cc +158 -136
  423. data/vendor/v8/src/x64/codegen-x64.h +4 -1
  424. data/vendor/v8/src/x64/cpu-x64.cc +7 -5
  425. data/vendor/v8/src/x64/debug-x64.cc +8 -6
  426. data/vendor/v8/src/x64/deoptimizer-x64.cc +195 -20
  427. data/vendor/v8/src/x64/disasm-x64.cc +42 -23
  428. data/vendor/v8/src/x64/frames-x64.cc +1 -1
  429. data/vendor/v8/src/x64/frames-x64.h +2 -2
  430. data/vendor/v8/src/x64/full-codegen-x64.cc +780 -218
  431. data/vendor/v8/src/x64/ic-x64.cc +77 -79
  432. data/vendor/v8/src/x64/jump-target-x64.cc +1 -1
  433. data/vendor/v8/src/x64/lithium-codegen-x64.cc +698 -181
  434. data/vendor/v8/src/x64/lithium-codegen-x64.h +31 -6
  435. data/vendor/v8/src/x64/lithium-x64.cc +136 -54
  436. data/vendor/v8/src/x64/lithium-x64.h +142 -51
  437. data/vendor/v8/src/x64/macro-assembler-x64.cc +456 -187
  438. data/vendor/v8/src/x64/macro-assembler-x64.h +166 -34
  439. data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +44 -28
  440. data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +8 -4
  441. data/vendor/v8/src/x64/register-allocator-x64-inl.h +3 -3
  442. data/vendor/v8/src/x64/register-allocator-x64.cc +12 -8
  443. data/vendor/v8/src/x64/simulator-x64.h +5 -5
  444. data/vendor/v8/src/x64/stub-cache-x64.cc +299 -344
  445. data/vendor/v8/src/x64/virtual-frame-x64.cc +37 -13
  446. data/vendor/v8/src/x64/virtual-frame-x64.h +13 -7
  447. data/vendor/v8/src/zone-inl.h +49 -3
  448. data/vendor/v8/src/zone.cc +42 -41
  449. data/vendor/v8/src/zone.h +37 -34
  450. data/vendor/v8/test/benchmarks/testcfg.py +100 -0
  451. data/vendor/v8/test/cctest/SConscript +5 -4
  452. data/vendor/v8/test/cctest/cctest.h +3 -2
  453. data/vendor/v8/test/cctest/cctest.status +6 -11
  454. data/vendor/v8/test/cctest/test-accessors.cc +3 -3
  455. data/vendor/v8/test/cctest/test-alloc.cc +39 -33
  456. data/vendor/v8/test/cctest/test-api.cc +1092 -205
  457. data/vendor/v8/test/cctest/test-assembler-arm.cc +39 -25
  458. data/vendor/v8/test/cctest/test-assembler-ia32.cc +36 -37
  459. data/vendor/v8/test/cctest/test-assembler-mips.cc +1098 -40
  460. data/vendor/v8/test/cctest/test-assembler-x64.cc +32 -25
  461. data/vendor/v8/test/cctest/test-ast.cc +1 -0
  462. data/vendor/v8/test/cctest/test-circular-queue.cc +8 -5
  463. data/vendor/v8/test/cctest/test-compiler.cc +24 -24
  464. data/vendor/v8/test/cctest/test-cpu-profiler.cc +140 -5
  465. data/vendor/v8/test/cctest/test-dataflow.cc +1 -0
  466. data/vendor/v8/test/cctest/test-debug.cc +136 -77
  467. data/vendor/v8/test/cctest/test-decls.cc +1 -1
  468. data/vendor/v8/test/cctest/test-deoptimization.cc +25 -24
  469. data/vendor/v8/test/cctest/test-disasm-arm.cc +9 -4
  470. data/vendor/v8/test/cctest/test-disasm-ia32.cc +10 -8
  471. data/vendor/v8/test/cctest/test-func-name-inference.cc +10 -4
  472. data/vendor/v8/test/cctest/test-heap-profiler.cc +226 -164
  473. data/vendor/v8/test/cctest/test-heap.cc +240 -217
  474. data/vendor/v8/test/cctest/test-liveedit.cc +1 -0
  475. data/vendor/v8/test/cctest/test-log-stack-tracer.cc +18 -20
  476. data/vendor/v8/test/cctest/test-log.cc +114 -108
  477. data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +247 -177
  478. data/vendor/v8/test/cctest/test-mark-compact.cc +129 -90
  479. data/vendor/v8/test/cctest/test-parsing.cc +15 -14
  480. data/vendor/v8/test/cctest/test-platform-linux.cc +1 -0
  481. data/vendor/v8/test/cctest/test-platform-tls.cc +66 -0
  482. data/vendor/v8/test/cctest/test-platform-win32.cc +1 -0
  483. data/vendor/v8/test/cctest/test-profile-generator.cc +1 -1
  484. data/vendor/v8/test/cctest/test-regexp.cc +53 -41
  485. data/vendor/v8/test/cctest/test-reloc-info.cc +18 -11
  486. data/vendor/v8/test/cctest/test-serialize.cc +44 -43
  487. data/vendor/v8/test/cctest/test-sockets.cc +8 -3
  488. data/vendor/v8/test/cctest/test-spaces.cc +47 -29
  489. data/vendor/v8/test/cctest/test-strings.cc +20 -20
  490. data/vendor/v8/test/cctest/test-thread-termination.cc +8 -3
  491. data/vendor/v8/test/cctest/test-threads.cc +5 -3
  492. data/vendor/v8/test/cctest/test-utils.cc +5 -4
  493. data/vendor/v8/test/cctest/testcfg.py +7 -3
  494. data/vendor/v8/test/es5conform/es5conform.status +2 -77
  495. data/vendor/v8/test/es5conform/testcfg.py +1 -1
  496. data/vendor/v8/test/message/testcfg.py +1 -1
  497. data/vendor/v8/test/mjsunit/accessors-on-global-object.js +3 -3
  498. data/vendor/v8/test/mjsunit/array-concat.js +43 -1
  499. data/vendor/v8/test/mjsunit/array-join.js +25 -0
  500. data/vendor/v8/test/mjsunit/bitops-info.js +7 -1
  501. data/vendor/v8/test/mjsunit/compiler/array-length.js +2 -2
  502. data/vendor/v8/test/mjsunit/compiler/global-accessors.js +47 -0
  503. data/vendor/v8/test/mjsunit/compiler/pic.js +1 -1
  504. data/vendor/v8/test/mjsunit/compiler/regress-loadfield.js +65 -0
  505. data/vendor/v8/test/mjsunit/math-sqrt.js +5 -1
  506. data/vendor/v8/test/mjsunit/mjsunit.js +59 -8
  507. data/vendor/v8/test/mjsunit/mjsunit.status +0 -12
  508. data/vendor/v8/test/mjsunit/mul-exhaustive.js +129 -11
  509. data/vendor/v8/test/mjsunit/negate-zero.js +1 -1
  510. data/vendor/v8/test/mjsunit/object-freeze.js +5 -13
  511. data/vendor/v8/test/mjsunit/object-prevent-extensions.js +9 -50
  512. data/vendor/v8/test/mjsunit/object-seal.js +4 -13
  513. data/vendor/v8/test/mjsunit/override-eval-with-non-function.js +36 -0
  514. data/vendor/v8/test/mjsunit/regress/regress-1145.js +54 -0
  515. data/vendor/v8/test/mjsunit/regress/regress-1172-bis.js +37 -0
  516. data/vendor/v8/test/mjsunit/regress/regress-1181.js +54 -0
  517. data/vendor/v8/test/mjsunit/regress/regress-1207.js +35 -0
  518. data/vendor/v8/test/mjsunit/regress/regress-1209.js +34 -0
  519. data/vendor/v8/test/mjsunit/regress/regress-1210.js +48 -0
  520. data/vendor/v8/test/mjsunit/regress/regress-1213.js +43 -0
  521. data/vendor/v8/test/mjsunit/regress/regress-1218.js +29 -0
  522. data/vendor/v8/test/mjsunit/regress/regress-1229.js +79 -0
  523. data/vendor/v8/test/mjsunit/regress/regress-1233.js +47 -0
  524. data/vendor/v8/test/mjsunit/regress/regress-1236.js +34 -0
  525. data/vendor/v8/test/mjsunit/regress/regress-1237.js +36 -0
  526. data/vendor/v8/test/mjsunit/regress/regress-1240.js +39 -0
  527. data/vendor/v8/test/mjsunit/regress/regress-1257.js +58 -0
  528. data/vendor/v8/test/mjsunit/regress/regress-1278.js +69 -0
  529. data/vendor/v8/test/mjsunit/regress/regress-create-exception.js +1 -0
  530. data/vendor/v8/test/mjsunit/regress/regress-lazy-deopt-reloc.js +52 -0
  531. data/vendor/v8/test/mjsunit/sin-cos.js +15 -10
  532. data/vendor/v8/test/mjsunit/smi-negative-zero.js +2 -2
  533. data/vendor/v8/test/mjsunit/str-to-num.js +1 -1
  534. data/vendor/v8/test/mjsunit/strict-mode.js +435 -0
  535. data/vendor/v8/test/mjsunit/testcfg.py +23 -6
  536. data/vendor/v8/test/mozilla/mozilla.status +0 -2
  537. data/vendor/v8/test/mozilla/testcfg.py +1 -1
  538. data/vendor/v8/test/preparser/empty.js +28 -0
  539. data/vendor/v8/test/preparser/functions-only.js +38 -0
  540. data/vendor/v8/test/preparser/non-alphanum.js +34 -0
  541. data/vendor/v8/test/preparser/symbols-only.js +49 -0
  542. data/vendor/v8/test/preparser/testcfg.py +90 -0
  543. data/vendor/v8/test/sputnik/testcfg.py +1 -1
  544. data/vendor/v8/test/test262/README +16 -0
  545. data/vendor/v8/test/test262/harness-adapt.js +80 -0
  546. data/vendor/v8/test/test262/test262.status +1506 -0
  547. data/vendor/v8/test/test262/testcfg.py +123 -0
  548. data/vendor/v8/tools/freebsd-tick-processor +10 -0
  549. data/vendor/v8/tools/gyp/v8.gyp +8 -33
  550. data/vendor/v8/tools/linux-tick-processor +5 -3
  551. data/vendor/v8/tools/test.py +37 -14
  552. data/vendor/v8/tools/tickprocessor.js +22 -8
  553. data/vendor/v8/tools/visual_studio/v8_base.vcproj +13 -1
  554. data/vendor/v8/tools/visual_studio/v8_base_arm.vcproj +5 -1
  555. data/vendor/v8/tools/visual_studio/v8_base_x64.vcproj +5 -1
  556. data/vendor/v8/tools/visual_studio/x64.vsprops +1 -0
  557. metadata +1495 -1341
  558. data/ext/extconf.rb +0 -22
  559. data/ext/mustang.cpp +0 -58
  560. data/vendor/v8/src/top.h +0 -608
@@ -0,0 +1,1506 @@
1
+ # Copyright 2011 the V8 project authors. All rights reserved.
2
+ # Redistribution and use in source and binary forms, with or without
3
+ # modification, are permitted provided that the following conditions are
4
+ # met:
5
+ #
6
+ # * Redistributions of source code must retain the above copyright
7
+ # notice, this list of conditions and the following disclaimer.
8
+ # * Redistributions in binary form must reproduce the above
9
+ # copyright notice, this list of conditions and the following
10
+ # disclaimer in the documentation and/or other materials provided
11
+ # with the distribution.
12
+ # * Neither the name of Google Inc. nor the names of its
13
+ # contributors may be used to endorse or promote products derived
14
+ # from this software without specific prior written permission.
15
+ #
16
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+
29
+ #
30
+ # ietestcenter tests.
31
+ #
32
+
33
+ prefix ietestcenter
34
+
35
+ # BUG: 7.6 - SyntaxError expected: reserved words used as Identifier
36
+ # Names in UTF8: class (class)
37
+ 7.6-30: FAIL
38
+ # BUG: 7.6 - SyntaxError expected: reserved words used as Identifier
39
+ # Names in UTF8: extends (extends)
40
+ 7.6-31: FAIL
41
+ # BUG: 7.6 - SyntaxError expected: reserved words used as Identifier
42
+ # Names in UTF8: \u0065\u006e\u0075\u006d (enum)
43
+ 7.6-32: FAIL
44
+ # BUG: 7.6 - SyntaxError expected: reserved words used as Identifier
45
+ # Names in UTF8: \u0073uper (super)
46
+ 7.6-33: FAIL
47
+ # BUG: 7.6 - SyntaxError expected: reserved words used as Identifier
48
+ # Names in UTF8: expor\u0074 (export)
49
+ 7.6-35: FAIL
50
+ # BUG: 7.6 - SyntaxError expected: reserved words used as Identifier
51
+ # Names in UTF8: \u0069\u006d\u0070\u006f\u0072\u0074 (import)
52
+ 7.6-36: FAIL
53
+ # Invalid test: https://bugs.ecmascript.org/show_bug.cgi?id=76
54
+ 10.4.2-2-c-1: FAIL
55
+ # BUG: 11.8.2 Greater-than Operator - Partial left to right order enforced
56
+ # when using Greater-than operator: valueOf > valueOf
57
+ 11.8.2-1: FAIL
58
+ # BUG: 11.8.2 Greater-than Operator - Partial left to right order enforced
59
+ # when using Greater-than operator: valueOf > toString
60
+ 11.8.2-2: FAIL
61
+ # BUG: 11.8.2 Greater-than Operator - Partial left to right order enforced
62
+ # when using Greater-than operator: toString > valueOf
63
+ 11.8.2-3: FAIL
64
+ # BUG: 11.8.2 Greater-than Operator - Partial left to right order enforced
65
+ # when using Greater-than operator: toString > toString
66
+ 11.8.2-4: FAIL
67
+ # BUG: 11.8.3 Less-than-or-equal Operator - Partial left to right order
68
+ # enforced when using Less-than-or-equal operator: valueOf <= valueOf
69
+ 11.8.3-1: FAIL
70
+ # BUG: 11.8.3 Less-than-or-equal Operator - Partial left to right order
71
+ # enforced when using Less-than-or-equal operator: valueOf <= toString
72
+ 11.8.3-2: FAIL
73
+ # BUG: 11.8.3 Less-than-or-equal Operator - Partial left to right order
74
+ # enforced when using Less-than-or-equal operator: toString <= valueOf
75
+ 11.8.3-3: FAIL
76
+ # BUG: 11.8.3 Less-than-or-equal Operator - Partial left to right order
77
+ # enforced when using Less-than-or-equal operator: toString <= toString
78
+ 11.8.3-4: FAIL
79
+ # BUG: 11.8.3 Less-than-or-equal Operator - Partial left to right order
80
+ # enforced when using Less-than-or-equal operator: valueOf <= valueOf
81
+ 11.8.3-5: FAIL
82
+ # BUG: Global.NaN is a data property with default attribute values
83
+ 15.1.1.1-0: FAIL
84
+ # BUG: Global.Infinity is a data property with default attribute values
85
+ 15.1.1.2-0: FAIL
86
+ # BUG: Global.undefined is a data property with default attribute values
87
+ 15.1.1.3-0: FAIL
88
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
89
+ # for properties on built-ins (Global.NaN)
90
+ 15.2.3.3-4-178: FAIL
91
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
92
+ # for properties on built-ins (Global.Infinity)
93
+ 15.2.3.3-4-179: FAIL
94
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
95
+ # for properties on built-ins (Global.undefined)
96
+ 15.2.3.3-4-180: FAIL
97
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
98
+ # for properties on built-ins (RegExp.prototype.source)
99
+ # There is no RegExp.prototype.source
100
+ 15.2.3.3-4-212: FAIL
101
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
102
+ # for properties on built-ins (RegExp.prototype.global)
103
+ # There is no RegExp.prototype.global
104
+ 15.2.3.3-4-213: FAIL
105
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
106
+ # for properties on built-ins (RegExp.prototype.ignoreCase)
107
+ # There is no RegExp.prototype.ignoreCase
108
+ 15.2.3.3-4-214: FAIL
109
+ # BUG: Object.getOwnPropertyDescriptor returns data desc (all false)
110
+ # for properties on built-ins (RegExp.prototype.multiline)
111
+ 15.2.3.3-4-215: FAIL
112
+ # Bug? Object.create - 'set' property of one property in 'Properties'
113
+ # is not present (8.10.5 step 8)
114
+ # V8 throws.
115
+ 15.2.3.5-4-267: FAIL
116
+ # Bug? Object.create - 'set' property of one property in 'Properties'
117
+ # is undefined (8.10.5 step 8.b)
118
+ # V8 throws.
119
+ 15.2.3.5-4-292: FAIL
120
+ # Bug? Object.defineProperty - 'set' property in 'Attributes' is not
121
+ # present (8.10.5 step 8)
122
+ # V8 throws.
123
+ 15.2.3.6-3-236: FAIL
124
+ # Bug? Object.defineProperty - 'set' property in 'Attributes' is own
125
+ # accessor property without a get function (8.10.5 step 8.a)
126
+ # V8 throws.
127
+ 15.2.3.6-3-245: FAIL
128
+ # Bug? Object.defineProperty - 'set' property in 'Attributes' is own
129
+ # accessor property(without a get function) that overrides an inherited
130
+ # accessor property (8.10.5 step 8.a)
131
+ # V8 throws.
132
+ 15.2.3.6-3-246: FAIL
133
+ # Bug? Object.defineProperty - 'set' property in 'Attributes' is an
134
+ # inherited accessor property without a get function (8.10.5 step 8.a)
135
+ # V8 throws.
136
+ 15.2.3.6-3-247: FAIL
137
+ # Bug? Object.defineProperty - value of 'set' property in 'Attributes'
138
+ # is undefined (8.10.5 step 8.b)
139
+ # V8 throws.
140
+ 15.2.3.6-3-261: FAIL
141
+ # Bug? Object.defineProperty - Update [[Enumerable]] attribute of 'name'
142
+ # property to true successfully when [[Enumerable]] attribute of 'name'
143
+ # is false and [[Configurable]] attribute of 'name' is true, the 'desc'
144
+ # is a generic descriptor which only contains [[Enumerable]] attribute
145
+ # as true, 'name' property is an index data property (8.12.9 step 8)
146
+ 15.2.3.6-4-82-18: FAIL
147
+ # Bug? Object.defineProperty - Update [[Enumerable]] attribute of 'name'
148
+ # property to false successfully when [[Enumerable]] and [[Configurable]]
149
+ # attributes of 'name' property are true, the 'desc' is a generic
150
+ # descriptor which only contains [Enumerable]] attribute as false and
151
+ # 'name' property is an index accessor property (8.12.9 step 8)
152
+ 15.2.3.6-4-82-19: FAIL
153
+ # Bug? Object.defineProperty - Update [[Enumerable]] attribute of 'name'
154
+ # property to false successfully when [[Enumerable]] and [[Configurable]]
155
+ # attributes of 'name' property are true, the 'desc' is a generic
156
+ # descriptor which contains [Enumerable]] attribute as false and
157
+ # [[Configurable]] property is true, 'name' property is an index accessor
158
+ # property (8.12.9 step 8)
159
+ 15.2.3.6-4-82-20: FAIL
160
+ # Bug? Object.defineProperty - Update [[Configurable]] attribute of 'name'
161
+ # property to false successfully when [[Enumerable]] and [[Configurable]]
162
+ # attributes of 'name' property are true, the 'desc' is a generic
163
+ # descriptor which only contains [[Configurable]] attribute as false,
164
+ # 'name' property is an index accessor property (8.12.9 step 8)
165
+ 15.2.3.6-4-82-21: FAIL
166
+ # Bug? Object.defineProperty - Update [[Configurable]] attribute of 'name'
167
+ # property to false successfully when [[Enumerable]] and [[Configurable]]
168
+ # attributes of 'name' property are true, the 'desc' is a generic
169
+ # descriptor which contains [[Enumerable]] attribute as true and
170
+ # [[Configurable]] attribute is false, 'name' property is an index accessor
171
+ # property (8.12.9 step 8)
172
+ 15.2.3.6-4-82-22: FAIL
173
+ # Bug? Object.defineProperty - Update [[Enumerable]] and [[Configurable]]
174
+ # attributes of 'name' property to false successfully when [[Enumerable]]
175
+ # and [[Configurable]] attributes of 'name' property are true, the 'desc'
176
+ # is a generic descriptor which contains [[Enumerable]] and
177
+ # [[Configurable]] attributes as false, 'name' property is an index
178
+ # accessor property (8.12.9 step 8)
179
+ 15.2.3.6-4-82-23: FAIL
180
+ # Bug? Object.defineProperty - Update [[Enumerable]] attributes of 'name'
181
+ # property to true successfully when [[Enumerable]] attribute of 'name' is
182
+ # false and [[Configurable]] attribute of 'name' is true, the 'desc' is a
183
+ # generic descriptor which only contains [[Enumerable]] attribute as true,
184
+ # 'name' property is an index accessor property (8.12.9 step 8)
185
+ 15.2.3.6-4-82-24: FAIL
186
+ # Bug? Object.defineProperty - 'O' is an Array, test the length property of 'O'
187
+ # is own data property (15.4.5.1 step 1)
188
+ 15.2.3.6-4-116: FAIL
189
+ # Bug? Object.defineProperty - 'O' is an Array, test the length property of 'O'
190
+ # is own data property that overrides an inherited data property (15.4.5.1
191
+ # step 1)
192
+ 15.2.3.6-4-117: FAIL
193
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
194
+ # 'O', test that RangeError exception is thrown when [[Value]] field of
195
+ # 'desc' is undefined (15.4.5.1 step 3.c)
196
+ 15.2.3.6-4-125: FAIL
197
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
198
+ # 'O', test the [[Value]] field of 'desc' is null (15.4.5.1 step 3.c)
199
+ 15.2.3.6-4-126: FAIL
200
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
201
+ # 'O', test the [[Value]] field of 'desc' is a boolean with value false
202
+ # (15.4.5.1 step 3.c)
203
+ 15.2.3.6-4-127: FAIL
204
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
205
+ # 'O', test the [[Value]] field of 'desc' is a boolean with value true
206
+ # (15.4.5.1 step 3.c)
207
+ 15.2.3.6-4-128: FAIL
208
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
209
+ # 'O', test RangeError exception is not thrown when the [[Value]] field of
210
+ # 'desc' is 0 (15.4.5.1 step 3.c)
211
+ 15.2.3.6-4-129: FAIL
212
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
213
+ # 'O', test RangeError exception is not thrown when the [[Value]] field of
214
+ # 'desc' is +0 (15.4.5.1 step 3.c)
215
+ 15.2.3.6-4-130: FAIL
216
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
217
+ # 'O', test RangeError exception is not thrown when the [[Value]] field of
218
+ # 'desc' is -0 (15.4.5.1 step 3.c)
219
+ 15.2.3.6-4-131: FAIL
220
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
221
+ # 'O', test RangeError exception is not thrown when the [[Value]] field of
222
+ # 'desc' is a positive number (15.4.5.1 step 3.c)
223
+ 15.2.3.6-4-132: FAIL
224
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
225
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
226
+ # 'desc' is a negative number (15.4.5.1 step 3.c)
227
+ 15.2.3.6-4-133: FAIL
228
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
229
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
230
+ # 'desc' is +Infinity (15.4.5.1 step 3.c)
231
+ 15.2.3.6-4-134: FAIL
232
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
233
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
234
+ # 'desc' is -Infinity (15.4.5.1 step 3.c)
235
+ 15.2.3.6-4-135: FAIL
236
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
237
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
238
+ # 'desc' is NaN (15.4.5.1 step 3.c)
239
+ 15.2.3.6-4-136: FAIL
240
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
241
+ # 'O', test RangeError exception is not thrown when the [[Value]] field of
242
+ # 'desc' is a string containing a positive number (15.4.5.1 step 3.c)
243
+ 15.2.3.6-4-137: FAIL
244
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
245
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
246
+ # 'desc' is a string containing a negative number (15.4.5.1 step 3.c)
247
+ 15.2.3.6-4-138: FAIL
248
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
249
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
250
+ # 'desc' is a string containing a decimal number (15.4.5.1 step 3.c)
251
+ 15.2.3.6-4-139: FAIL
252
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
253
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
254
+ # 'desc' is a string containing +Infinity (15.4.5.1 step 3.c)
255
+ 15.2.3.6-4-140: FAIL
256
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
257
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
258
+ # 'desc' is a string containing -Infinity (15.4.5.1 step 3.c)
259
+ 15.2.3.6-4-141: FAIL
260
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
261
+ # 'O', test the [[Value]] field of 'desc' is a string containing an
262
+ # exponential number (15.4.5.1 step 3.c)
263
+ 15.2.3.6-4-142: FAIL
264
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
265
+ # 'O', test the [[Value]] field of 'desc' is a string containing a hex
266
+ # number (15.4.5.1 step 3.c)
267
+ 15.2.3.6-4-143: FAIL
268
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
269
+ # 'O', test the [[Value]] field of 'desc' is a string containing a number
270
+ # with leading zeros (15.4.5.1 step 3.c)
271
+ 15.2.3.6-4-144: FAIL
272
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
273
+ # 'O', test RangeError exception is thrown when the [[Value]] field of
274
+ # 'desc' is a string which doesn't convert to a number (15.4.5.1 step 3.c)
275
+ 15.2.3.6-4-145: FAIL
276
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
277
+ # 'O', test the [[Value]] field of 'desc' is an object which has an own
278
+ # toString method (15.4.5.1 step 3.c)
279
+ 15.2.3.6-4-146: FAIL
280
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
281
+ # 'O', test the [[Value]] field of 'desc' is an Object which has an own
282
+ # valueOf method (15.4.5.1 step 3.c)
283
+ 15.2.3.6-4-147: FAIL
284
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
285
+ # 'O', test the [[Value]] field of 'desc' is an Object which has an own
286
+ # valueOf method that returns an object and toString method that returns a
287
+ # string (15.4.5.1 step 3.c)
288
+ 15.2.3.6-4-148: FAIL
289
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
290
+ # 'O', test the [[Value]] field of 'desc' is an Object which has an own
291
+ # toString and valueOf method (15.4.5.1 step 3.c)
292
+ 15.2.3.6-4-149: FAIL
293
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
294
+ # 'O', test TypeError is thrown when the [[Value]] field of 'desc' is an
295
+ # Object that both toString and valueOf wouldn't return primitive value
296
+ # (15.4.5.1 step 3.c)
297
+ 15.2.3.6-4-150: FAIL
298
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
299
+ # 'O', and the [[Value]] field of 'desc' is an Object with an own toString
300
+ # method and an inherited valueOf method (15.4.5.1 step 3.c), test that the
301
+ # inherited valueOf method is used
302
+ 15.2.3.6-4-151: FAIL
303
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
304
+ # 'O', test RangeError is thrown when the [[Value]] field of 'desc' is a
305
+ # positive non-integer values (15.4.5.1 step 3.c)
306
+ 15.2.3.6-4-152: FAIL
307
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length prosperty
308
+ # of 'O', test RangeError is thrown when the [[Value]] field of 'desc' is a
309
+ # negative non-integer values (15.4.5.1 step 3.c)
310
+ 15.2.3.6-4-153: FAIL
311
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
312
+ # 'O', test the [[Value]] field of 'desc' is boundary value 2^32 - 2
313
+ # (15.4.5.1 step 3.c)
314
+ 15.2.3.6-4-154: FAIL
315
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
316
+ # 'O', test the [[Value]] field of 'desc' is boundary value 2^32 - 1
317
+ # (15.4.5.1 step 3.c)
318
+ 15.2.3.6-4-155: FAIL
319
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
320
+ # 'O', test RangeError is thrown when the [[Value]] field of 'desc' is
321
+ # boundary value 2^32 (15.4.5.1 step 3.c)
322
+ 15.2.3.6-4-156: FAIL
323
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
324
+ # 'O', test RangeError is thrown when the [[Value]] field of 'desc' is
325
+ # boundary value 2^32 + 1 (15.4.5.1 step 3.c)
326
+ 15.2.3.6-4-157: FAIL
327
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
328
+ # 'O', set the [[Value]] field of 'desc' to a value greater than the
329
+ # existing value of length (15.4.5.1 step 3.f)
330
+ 15.2.3.6-4-159: FAIL
331
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
332
+ # 'O', set the [[Value]] field of 'desc' to a value lesser than the
333
+ # existing value of length and test that indexes beyond the new length are
334
+ # deleted(15.4.5.1 step 3.f)
335
+ 15.2.3.6-4-161: FAIL
336
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
337
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
338
+ # property, test the [[Writable]] attribute of the length property is set
339
+ # to true after deleting properties with large index named if the
340
+ # [[Writable]] field of 'desc' is absent (15.4.5.1 step 3.h)
341
+ 15.2.3.6-4-165: FAIL
342
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
343
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
344
+ # property, test the [[Writable]] attribute of the length property is set
345
+ # to true after deleting properties with large index named if the
346
+ # [[Writable]] field of 'desc' is true (15.4.5.1 step 3.h)
347
+ 15.2.3.6-4-166: FAIL
348
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
349
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
350
+ # property, test the [[Writable]] attribute of the length property is set
351
+ # to false after deleting properties with large index named if the
352
+ # [[Writable]] field of 'desc' is false (15.4.5.1 step 3.i.ii)
353
+ 15.2.3.6-4-167: FAIL
354
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
355
+ # 'O', whose writable attribute is being changed to false and the [[Value]]
356
+ # field of 'desc' is less than value of the length property and also lesser
357
+ # than an index of the array which is set to configurable:false, test that
358
+ # new length is set to a value greater than the non-deletable index by 1,
359
+ # writable attribute of length is set to false and TypeError exception is
360
+ # thrown (15.4.5.1 step 3.i.iii)
361
+ 15.2.3.6-4-168: FAIL
362
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
363
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
364
+ # property and also lesser than an index of the array which is set to
365
+ # configurable: false, test that new length is set to a value greater than
366
+ # the non-deletable index by 1, and TypeError is thrown (15.4.5.1 step
367
+ # 3.l.i)
368
+ 15.2.3.6-4-169: FAIL
369
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
370
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
371
+ # property and also lesser than an index of the array which is set to
372
+ # configurable: false, test that new length is set to a value greater than
373
+ # the non-deletable index by 1, writable attribute of length is set to
374
+ # false and TypeError exception is thrown (15.4.5.1 step 3.l.ii)
375
+ 15.2.3.6-4-170: FAIL
376
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
377
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
378
+ # property, test the [[Configurable]] attribute of an inherited data
379
+ # property with large index named in 'O' can't stop deleting index named
380
+ # properties (15.4.5.1 step 3.l.ii)
381
+ 15.2.3.6-4-171: FAIL
382
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
383
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
384
+ # property, test the [[Configurable]] attribute of own data property with
385
+ # large index named in 'O' that overrides an inherited data property can
386
+ # stop deleting index named properties (15.4.5.1 step 3.l.ii)
387
+ 15.2.3.6-4-172: FAIL
388
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
389
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
390
+ # property, test the [[Configurable]] attribute of own data property with
391
+ # large index named in 'O' that overrides an inherited accessor property
392
+ # can stop deleting index named properties (15.4.5.1 step 3.l.ii)
393
+ 15.2.3.6-4-173: FAIL
394
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
395
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
396
+ # property, test the [[Configurable]] attribute of own accessor property
397
+ # with large index named in 'O' can stop deleting index named properties
398
+ # (15.4.5.1 step 3.l.ii)
399
+ 15.2.3.6-4-174: FAIL
400
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
401
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
402
+ # property, test the [[Configurable]] attribute of an inherited accessor
403
+ # property with large index named in 'O' can't stop deleting index named
404
+ # properties (15.4.5.1 step 3.l.ii)
405
+ 15.2.3.6-4-175: FAIL
406
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
407
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
408
+ # property, test the [[Configurable]] attribute of own accessor property
409
+ # with large index named in 'O' that overrides an inherited data property
410
+ # can stop deleting index named properties (15.4.5.1 step 3.l.ii)
411
+ 15.2.3.6-4-176: FAIL
412
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
413
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
414
+ # property, test the [[Configurable]] attribute of own accessor property
415
+ # with large index named in 'O' that overrides an inherited accessor
416
+ # property can stop deleting index named properties (15.4.5.1 step 3.l.ii)
417
+ 15.2.3.6-4-177: FAIL
418
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
419
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
420
+ # property, test the configurable large index named property of 'O' is
421
+ # deleted (15.4.5.1 step 3.l.ii)
422
+ 15.2.3.6-4-178: FAIL
423
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
424
+ # 'O', the [[Value]] field of 'desc' is greater than value of the length
425
+ # property, test value of the length property is same as [[Value]]
426
+ # (15.4.5.1 step 3.l.iii.1)
427
+ 15.2.3.6-4-179-1: FAIL
428
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is the length property of
429
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
430
+ # property, test the [[Writable]] attribute of the length property is set
431
+ # to false at last when the [[Writable]] field of 'desc' is false and 'O'
432
+ # doesn't contain non-configurable large index named property (15.4.5.1
433
+ # step 3.m)
434
+ 15.2.3.6-4-181: FAIL
435
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
436
+ # property, 'name' is boundary value 2^32 - 2 (15.4.5.1 step 4.a)
437
+ 15.2.3.6-4-183: FAIL
438
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
439
+ # property, test TypeError is thrown if the [[Writable]] attribute of the
440
+ # length property in 'O' is false and value of 'name' equals to value of
441
+ # the length property (15.4.5.1 step 4.b)
442
+ 15.2.3.6-4-188: FAIL
443
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
444
+ # property, test TypeError is thrown if the [[Writable]] attribute of the
445
+ # length property in 'O' is false and value of 'name' is greater than value
446
+ # of the length property (15.4.5.1 step 4.b)
447
+ 15.2.3.6-4-189: FAIL
448
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
449
+ # property, 'desc' is accessor descriptor, test updating all attribute
450
+ # values of 'name' (15.4.5.1 step 4.c)
451
+ 15.2.3.6-4-209: FAIL
452
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
453
+ # property, 'name' is accessor property and assignment to the accessor
454
+ # property, fails to convert accessor property from accessor property to
455
+ # data property (15.4.5.1 step 4.c)
456
+ 15.2.3.6-4-243-1: FAIL
457
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
458
+ # property, name is accessor property and 'desc' is accessor descriptor,
459
+ # test updating the [[Enumerable]] attribute value of 'name' (15.4.5.1 step
460
+ # 4.c)
461
+ 15.2.3.6-4-271: FAIL
462
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
463
+ # property, name is accessor property and 'desc' is accessor descriptor,
464
+ # test updating the [[Configurable]] attribute value of 'name' (15.4.5.1
465
+ # step 4.c)
466
+ 15.2.3.6-4-272: FAIL
467
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
468
+ # property, name is accessor property and 'desc' is accessor descriptor,
469
+ # test updating multiple attribute values of 'name' (15.4.5.1 step 4.c)
470
+ 15.2.3.6-4-273: FAIL
471
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
472
+ # property, test the length property of 'O' is set as ToUint32('name') + 1
473
+ # if ToUint32('name') equals to value of the length property in 'O'
474
+ # (15.4.5.1 step 4.e.ii)
475
+ 15.2.3.6-4-275: FAIL
476
+ # Bug? Object.defineProperty - 'O' is an Array, 'name' is an array index named
477
+ # property, test the length property of 'O' is set as ToUint32('name') + 1
478
+ # if ToUint32('name') is greater than value of the length property in 'O'
479
+ # (15.4.5.1 step 4.e.ii)
480
+ 15.2.3.6-4-276: FAIL
481
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
482
+ # formal parameters, 'name' is own property which is defined in both
483
+ # [[ParameterMap]] of 'O' and 'O', and is deleted afterwards, and 'desc' is
484
+ # data descriptor, test 'name' is redefined in 'O' with all correct
485
+ # attribute values (10.6 [[DefineOwnProperty]] step 3)
486
+ 15.2.3.6-4-289-1: FAIL
487
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
488
+ # formal parameters, 'name' is own property which is defined in both
489
+ # [[ParameterMap]] of 'O' and 'O', is deleted afterwards, and 'desc' is
490
+ # accessor descriptor, test 'name' is redefined in 'O' with all correct
491
+ # attribute values (10.6 [[DefineOwnProperty]] step 3)
492
+ 15.2.3.6-4-290-1: FAIL
493
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
494
+ # formal parameters, 'name' is own accessor property of 'O' which is also
495
+ # defined in [[ParameterMap]] of 'O', and 'desc' is accessor descriptor,
496
+ # test updating multiple attribute values of 'name' (10.6
497
+ # [[DefineOwnProperty]] step 3 and 5.a.i)
498
+ 15.2.3.6-4-291-1: FAIL
499
+ # Bug? Object.defineProperty - 'O' is an Arguments object, 'name' is own
500
+ # accessor property of 'O', and 'desc' is accessor descriptor, test
501
+ # updating multiple attribute values of 'name' (10.6 [[DefineOwnProperty]]
502
+ # step 3)
503
+ 15.2.3.6-4-291: FAIL
504
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
505
+ # formal parameters, 'name' is own data property of 'O' which is also
506
+ # defined in [[ParameterMap]] of 'O', test TypeError is not thrown when
507
+ # updating the [[Value]] attribute value of 'name' which is defined as
508
+ # non-writable and configurable (10.6 [[DefineOwnProperty]] step 3 and step
509
+ # 5.b)
510
+ 15.2.3.6-4-293-3: FAIL
511
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
512
+ # formal parameters, 'name' is own accessor property of 'O' which is also
513
+ # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
514
+ # updating the [[Get]] attribute value of 'name' which is defined as
515
+ # non-configurable (10.6 [[DefineOwnProperty]] step 4 and step 5a)
516
+ 15.2.3.6-4-297-1: FAIL
517
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
518
+ # formal parameters, 'name' is own accessor property of 'O' which is also
519
+ # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
520
+ # updating the [[Set]] attribute value of 'name' which is defined as
521
+ # non-configurable (10.6 [[DefineOwnProperty]] steps 4 and 5a)
522
+ 15.2.3.6-4-298-1: FAIL
523
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
524
+ # formal parameters, 'name' is own accessor property of 'O' which is also
525
+ # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
526
+ # updating the [[Enumerable]] attribute value of 'name' which is defined as
527
+ # non-configurable (10.6 [[DefineOwnProperty]] steps 4 and 5a)
528
+ 15.2.3.6-4-299-1: FAIL
529
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
530
+ # formal parameters, 'name' is an index named property of 'O', and 'desc'
531
+ # is data descriptor, test 'name' is defined in 'O' with all correct
532
+ # attribute values (10.6 [[DefineOwnProperty]] step 3)
533
+ 15.2.3.6-4-301-1: FAIL
534
+ # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
535
+ # formal parameters, 'name' is an index named property of 'O' but not
536
+ # defined in [[ParameterMap]] of 'O', and 'desc' is accessor descriptor,
537
+ # test 'name' is defined in 'O' with all correct attribute values (10.6
538
+ # [[DefineOwnProperty]] step 3 and step 5a)
539
+ 15.2.3.6-4-302-1: FAIL
540
+ # Bug? Object.defineProperty - 'O' is an Arguments object, 'name' is an index
541
+ # named accessor property of 'O' but not defined in [[ParameterMap]] of
542
+ # 'O', and 'desc' is accessor descriptor, test updating multiple attribute
543
+ # values of 'name' (10.6 [[DefineOwnProperty]] step 3)
544
+ 15.2.3.6-4-303: FAIL
545
+ # Bug? ES5 Attributes - [[Value]] attribute of data property is the activex host
546
+ # object
547
+ 15.2.3.6-4-401: FAIL
548
+ # Bug? ES5 Attributes - Failed to add a property to an object when the object's
549
+ # object has a property with same name and [[Writable]] attribute is set to
550
+ # false (Number instance)
551
+ 15.2.3.6-4-405: FAIL
552
+ # Bug? ES5 Attributes - Failed to add a property to an object when the object's
553
+ # prototype has a property with the same name and [[Writable]] set to false
554
+ # (JSON)
555
+ 15.2.3.6-4-410: FAIL
556
+ # Bug? ES5 Attributes - Failed to add properties to an object when the object's
557
+ # prototype has properties with the same name and [[Writable]] set to false
558
+ # (Object.create)
559
+ 15.2.3.6-4-415: FAIL
560
+ # Bug? ES5 Attributes - Failed to add a property to an object when the object's
561
+ # prototype has a property with the same name and [[Writable]] set to
562
+ # false(Function.prototype.bind)
563
+ 15.2.3.6-4-420: FAIL
564
+ # Bug? ES5 Attributes - Fail to add property into object (Number instance)
565
+ 15.2.3.6-4-581: FAIL
566
+ # Bug? ES5 Attributes - Fail to update value of property into of [[Proptotype]]
567
+ # internal property (JSON)
568
+ 15.2.3.6-4-586: FAIL
569
+ # Bug? ES5 Attributes - Fail to update value of property of [[Proptotype]]
570
+ # internal property (Object.create)
571
+ 15.2.3.6-4-591: FAIL
572
+ # Bug? ES5 Attributes - Fail to update value of property into of [[Proptotype]]
573
+ # internal property (Function.prototype.bind)
574
+ 15.2.3.6-4-596: FAIL
575
+ # Bug? ES5 Attributes - all attributes in Array.prototype.indexOf are correct
576
+ 15.2.3.6-4-612: FAIL
577
+ # Bug? ES5 Attributes - all attributes in Object.lastIndexOf are correct
578
+ 15.2.3.6-4-613: FAIL
579
+ # Bug? ES5 Attributes - all attributes in Array.prototype.every are correct
580
+ 15.2.3.6-4-614: FAIL
581
+ # Bug? ES5 Attributes - all attributes in Array.prototype.some are correct
582
+ 15.2.3.6-4-615: FAIL
583
+ # Bug? ES5 Attributes - all attributes in Array.prototype.forEach are correct
584
+ 15.2.3.6-4-616: FAIL
585
+ # Bug? ES5 Attributes - all attributes in Array.prototype.map are correct
586
+ 15.2.3.6-4-617: FAIL
587
+ # Bug? ES5 Attributes - all attributes in Array.prototype.filter are correct
588
+ 15.2.3.6-4-618: FAIL
589
+ # Bug? ES5 Attributes - all attributes in Array.prototype.reduce are correct
590
+ 15.2.3.6-4-619: FAIL
591
+ # Bug? ES5 Attributes - all attributes in Array.prototype.reduceRight are
592
+ # correct
593
+ 15.2.3.6-4-620: FAIL
594
+ # Bug? ES5 Attributes - all attributes in String.prototype.trim are correct
595
+ 15.2.3.6-4-621: FAIL
596
+ # Bug? ES5 Attributes - all attributes in Date.prototype.toISOString are correct
597
+ 15.2.3.6-4-623: FAIL
598
+ # Bug? ES5 Attributes - all attributes in Date.prototype.toJSON are correct
599
+ 15.2.3.6-4-624: FAIL
600
+ # Bug? Object.defineProperties - argument 'Properties' is an Error object
601
+ # props.description = obj1;
602
+ 15.2.3.7-2-15: FAIL
603
+ # Bug? Object.defineProperties - 'Properties' is an Error object which
604
+ # implements its own [[Get]] method to get enumerable own property
605
+ # props.description = obj1;
606
+ 15.2.3.7-5-a-16: FAIL
607
+ # Bug? Object.defineProperties - 'set' property of 'descObj' is not present
608
+ # (8.10.5 step 8)
609
+ 15.2.3.7-5-b-227: FAIL
610
+ # Bug? Object.defineProperties - 'descObj' is an Error object which implements
611
+ # its own [[Get]] method to get 'set' property (8.10.5 step 8.a)
612
+ # descObj.description = { value: 11 };
613
+ 15.2.3.7-5-b-248: FAIL
614
+ # Bug? Object.defineProperties - 'O' is an Array, test the length property of
615
+ # 'O' is own data property (15.4.5.1 step 1)
616
+ 15.2.3.7-6-a-112: FAIL
617
+ # Bug? Object.defineProperties - 'O' is an Array, test the length property of
618
+ # 'O' is own data property that overrides an inherited data property
619
+ # (15.4.5.1 step 1)
620
+ 15.2.3.7-6-a-113: FAIL
621
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
622
+ # 'O', test RangeError is thrown when setting the [[Value]] field of 'desc'
623
+ # to undefined (15.4.5.1 step 3.c)
624
+ 15.2.3.7-6-a-121: FAIL
625
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
626
+ # 'O', test setting the [[Value]] field of 'desc' to null actuall is set to
627
+ # 0 (15.4.5.1 step 3.c)
628
+ 15.2.3.7-6-a-122: FAIL
629
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
630
+ # of 'O', test the [[Value]] field of 'desc' is a boolean with value false
631
+ # (15.4.5.1 step 3.c)
632
+ 15.2.3.7-6-a-123: FAIL
633
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
634
+ # of 'O', test the [[Value]] field of 'desc' is a boolean with value true
635
+ # (15.4.5.1 step 3.c)
636
+ 15.2.3.7-6-a-124: FAIL
637
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
638
+ # of 'O', test the [[Value]] field of 'desc' is 0 (15.4.5.1 step 3.c)
639
+ 15.2.3.7-6-a-125: FAIL
640
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
641
+ # of 'O', test the [[Value]] field of 'desc' is +0 (15.4.5.1 step 3.c)
642
+ 15.2.3.7-6-a-126: FAIL
643
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
644
+ # of 'O', test the [[Value]] field of 'desc' is -0 (15.4.5.1 step 3.c)
645
+ 15.2.3.7-6-a-127: FAIL
646
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
647
+ # of 'O', test the [[Value]] field of 'desc' is positive number (15.4.5.1
648
+ # step 3.c)
649
+ 15.2.3.7-6-a-128: FAIL
650
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
651
+ # of 'O', test the [[Value]] field of 'desc' is negative number (15.4.5.1
652
+ # step 3.c)
653
+ 15.2.3.7-6-a-129: FAIL
654
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
655
+ # of 'O', test the [[Value]] field of 'desc' is +Infinity (15.4.5.1 step
656
+ # 3.c)
657
+ 15.2.3.7-6-a-130: FAIL
658
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
659
+ # of 'O', test the [[Value]] field of 'desc' is -Infinity (15.4.5.1 step
660
+ # 3.c)
661
+ 15.2.3.7-6-a-131: FAIL
662
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
663
+ # of 'O', test the [[Value]] field of 'desc' is NaN (15.4.5.1 step 3.c)
664
+ 15.2.3.7-6-a-132: FAIL
665
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
666
+ # of 'O', test the [[Value]] field of 'desc' is a string containing a
667
+ # positive number (15.4.5.1 step 3.c)
668
+ 15.2.3.7-6-a-133: FAIL
669
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
670
+ # of 'O', test the [[Value]] field of 'desc' is a string containing a
671
+ # negative number (15.4.5.1 step 3.c)
672
+ 15.2.3.7-6-a-134: FAIL
673
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
674
+ # of 'O', test the [[Value]] field of 'desc' is a string containing a
675
+ # decimal number (15.4.5.1 step 3.c)
676
+ 15.2.3.7-6-a-135: FAIL
677
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
678
+ # of 'O', test the [[Value]] field of 'desc' is a string containing
679
+ # +Infinity (15.4.5.1 step 3.c)
680
+ 15.2.3.7-6-a-136: FAIL
681
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
682
+ # of 'O', test the [[Value]] field of 'desc' is a string containing
683
+ # -Infinity (15.4.5.1 step 3.c)
684
+ 15.2.3.7-6-a-137: FAIL
685
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
686
+ # of 'O', test the [[Value]] field of 'desc' is a string containing an
687
+ # exponential number (15.4.5.1 step 3.c)
688
+ 15.2.3.7-6-a-138: FAIL
689
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
690
+ # of 'O', test the [[Value]] field of 'desc' is a string containing an hex
691
+ # number (15.4.5.1 step 3.c)
692
+ 15.2.3.7-6-a-139: FAIL
693
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
694
+ # of 'O', test the [[Value]] field of 'desc' is a string containing an
695
+ # leading zero number (15.4.5.1 step 3.c)
696
+ 15.2.3.7-6-a-140: FAIL
697
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
698
+ # 'O', test the [[Value]] field of 'desc' is a string which doesn't convert
699
+ # to a number (15.4.5.1 step 3.c)
700
+ 15.2.3.7-6-a-141: FAIL
701
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
702
+ # 'O', test the [[Value]] field of 'desc' is an Object which has an own
703
+ # toString method (15.4.5.1 step 3.c)
704
+ 15.2.3.7-6-a-142: FAIL
705
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
706
+ # of 'O', test the [[Value]] field of 'desc' is an Object which has an own
707
+ # valueOf method (15.4.5.1 step 3.c)
708
+ 15.2.3.7-6-a-143: FAIL
709
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
710
+ # of 'O', test the [[Value]] field of 'desc' is an Object which has an own
711
+ # valueOf method that returns an object and toString method that returns a
712
+ # string (15.4.5.1 step 3.c)
713
+ 15.2.3.7-6-a-144: FAIL
714
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
715
+ # of 'O', test the [[Value]] field of 'desc' is an Object which has an own
716
+ # toString and valueOf method (15.4.5.1 step 3.c)
717
+ 15.2.3.7-6-a-145: FAIL
718
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
719
+ # of 'O', test TypeError is thrown when the [[Value]] field of 'desc' is an
720
+ # Object that both toString and valueOf wouldn't return primitive value
721
+ # (15.4.5.1 step 3.c)
722
+ 15.2.3.7-6-a-146: FAIL
723
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
724
+ # of 'O', test using inherited valueOf method when the [[Value]] field of
725
+ # 'desc' is an Objec with an own toString and inherited valueOf methods
726
+ # (15.4.5.1 step 3.c)
727
+ 15.2.3.7-6-a-147: FAIL
728
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
729
+ # of 'O', test RangeError is thrown when the [[Value]] field of 'desc' is
730
+ # positive non-integer values (15.4.5.1 step 3.c)
731
+ 15.2.3.7-6-a-148: FAIL
732
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
733
+ # of 'O', test RangeError is thrown when the [[Value]] field of 'desc' is
734
+ # negative non-integer values (15.4.5.1 step 3.c)
735
+ 15.2.3.7-6-a-149: FAIL
736
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
737
+ # of 'O', test the [[Value]] field of 'desc' is boundary value 2^32 - 2
738
+ # (15.4.5.1 step 3.c)
739
+ 15.2.3.7-6-a-150: FAIL
740
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
741
+ # of 'O', test the [[Value]] field of 'desc' is boundary value 2^32 - 1
742
+ # (15.4.5.1 step 3.c)
743
+ 15.2.3.7-6-a-151: FAIL
744
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
745
+ # of 'O', test RangeError is thrown when the [[Value]] field of 'desc' is
746
+ # boundary value 2^32 (15.4.5.1 step 3.c)
747
+ 15.2.3.7-6-a-152: FAIL
748
+ # Bug? Object.defineProperties - 'O' is an Array, 'name' is the length property
749
+ # of 'O', test RangeError is thrown when the [[Value]] field of 'desc' is
750
+ # boundary value 2^32 + 1 (15.4.5.1 step 3.c)
751
+ 15.2.3.7-6-a-153: FAIL
752
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
753
+ # 'O', test the [[Value]] field of 'desc' which is greater than value of
754
+ # the length property is defined into 'O' without deleting any property
755
+ # with large index named (15.4.5.1 step 3.f)
756
+ 15.2.3.7-6-a-155: FAIL
757
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
758
+ # 'O', test the [[Value]] field of 'desc' which is less than value of the
759
+ # length property is defined into 'O' with deleting properties with large
760
+ # index named (15.4.5.1 step 3.f)
761
+ 15.2.3.7-6-a-157: FAIL
762
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
763
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
764
+ # property, test the [[Writable]] attribute of the length property is set
765
+ # to true at last after deleting properties with large index named if the
766
+ # [[Writable]] field of 'desc' is absent (15.4.5.1 step 3.h)
767
+ 15.2.3.7-6-a-161: FAIL
768
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
769
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
770
+ # property, test the [[Writable]] attribute of the length property is set
771
+ # to true at last after deleting properties with large index named if the
772
+ # [[Writable]] field of 'desc' is true (15.4.5.1 step 3.h)
773
+ 15.2.3.7-6-a-162: FAIL
774
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
775
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
776
+ # property, test the [[Writable]] attribute of the length property is set
777
+ # to false at last after deleting properties with large index named if the
778
+ # [[Writable]] field of 'desc' is false (15.4.5.1 step 3.i.ii)
779
+ 15.2.3.7-6-a-163: FAIL
780
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
781
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
782
+ # property, test the [[Writable]] attribute of the length property in 'O'
783
+ # is set as true before deleting properties with large index named
784
+ # (15.4.5.1 step 3.i.iii)
785
+ 15.2.3.7-6-a-164: FAIL
786
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
787
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
788
+ # property, test the length property is decreased by 1 (15.4.5.1 step
789
+ # 3.l.i)
790
+ 15.2.3.7-6-a-165: FAIL
791
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
792
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
793
+ # property, test the [[Configurable]] attribute of own data property with
794
+ # large index named in 'O' can stop deleting index named properties
795
+ # (15.4.5.1 step 3.l.ii)
796
+ 15.2.3.7-6-a-166: FAIL
797
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
798
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
799
+ # property, test the [[Configurable]] attribute of inherited data property
800
+ # with large index named in 'O' can't stop deleting index named properties
801
+ # (15.4.5.1 step 3.l.ii)
802
+ 15.2.3.7-6-a-167: FAIL
803
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
804
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
805
+ # property, test the [[Configurable]] attribute of own data property with
806
+ # large index named in 'O' that overrides inherited data property can stop
807
+ # deleting index named properties (15.4.5.1 step 3.l.ii)
808
+ 15.2.3.7-6-a-168: FAIL
809
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
810
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
811
+ # property, test the [[Configurable]] attribute of own data property with
812
+ # large index named in 'O' that overrides inherited accessor property can
813
+ # stop deleting index named properties (15.4.5.1 step 3.l.ii)
814
+ 15.2.3.7-6-a-169: FAIL
815
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
816
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
817
+ # property, test the [[Configurable]] attribute of own accessor property
818
+ # with large index named in 'O' can stop deleting index named properties
819
+ # (15.4.5.1 step 3.l.ii)
820
+ 15.2.3.7-6-a-170: FAIL
821
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
822
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
823
+ # property, test the [[Configurable]] attribute of inherited accessor
824
+ # property with large index named in 'O' can't stop deleting index named
825
+ # properties (15.4.5.1 step 3.l.ii)
826
+ 15.2.3.7-6-a-171: FAIL
827
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
828
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
829
+ # property, test the [[Configurable]] attribute of own accessor property
830
+ # with large index named in 'O' that overrides inherited data property can
831
+ # stop deleting index named properties (15.4.5.1 step 3.l.ii)
832
+ 15.2.3.7-6-a-172: FAIL
833
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
834
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
835
+ # property, test the [[Configurable]] attribute of own accessor property
836
+ # with large index named in 'O' that overrides inherited accessor property
837
+ # can stop deleting index named properties (15.4.5.1 step 3.l.ii)
838
+ 15.2.3.7-6-a-173: FAIL
839
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
840
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
841
+ # property, test the configurable large index named property of 'O' can be
842
+ # deleted (15.4.5.1 step 3.l.ii)
843
+ 15.2.3.7-6-a-174: FAIL
844
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
845
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
846
+ # property, test value of the length property is set to the last
847
+ # non-configurable index named property of 'O' plus 1 (15.4.5.1 step
848
+ # 3.l.iii.1)
849
+ 15.2.3.7-6-a-175: FAIL
850
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
851
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
852
+ # property, test the [[Writable]] attribute of the length property is set
853
+ # to false at last when the [[Writable]] field of 'desc' is false and 'O'
854
+ # contains non-configurable large index named property (15.4.5.1 step
855
+ # 3.l.iii.2)
856
+ 15.2.3.7-6-a-176: FAIL
857
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is the length property of
858
+ # 'O', the [[Value]] field of 'desc' is less than value of the length
859
+ # property, test the [[Writable]] attribute of the length property is set
860
+ # to false at last when the [[Writable]] field of 'desc' is false and 'O'
861
+ # doesn't contain non-configurable large index named property (15.4.5.1
862
+ # step 3.m)
863
+ 15.2.3.7-6-a-177: FAIL
864
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
865
+ # property, 'P' is boundary value 2^32 - 2 (15.4.5.1 step 4.a)
866
+ 15.2.3.7-6-a-179: FAIL
867
+ # Bug? Object.defineProperties - TypeError is thrown if 'O' is an Array, 'P' is
868
+ # an array index named property,[[Writable]] attribute of the length
869
+ # property in 'O' is false, value of 'P' is equal to value of the length
870
+ # property in 'O' (15.4.5.1 step 4.b)
871
+ 15.2.3.7-6-a-184: FAIL
872
+ # Bug? Object.defineProperties - TypeError is thrown if 'O' is an Array, 'P' is
873
+ # an array index named property,[[Writable]] attribute of the length
874
+ # property in 'O' is false, value of 'P' is bigger than value of the length
875
+ # property in 'O' (15.4.5.1 step 4.b)
876
+ 15.2.3.7-6-a-185: FAIL
877
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
878
+ # property, 'desc' is accessor descriptor, test updating all attribute
879
+ # values of 'P' (15.4.5.1 step 4.c)
880
+ 15.2.3.7-6-a-205: FAIL
881
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
882
+ # property that already exists on 'O' is accessor property and 'desc' is
883
+ # accessor descriptor, test updating the [[Enumerable]] attribute value of
884
+ # 'P' (15.4.5.1 step 4.c)
885
+ 15.2.3.7-6-a-260: FAIL
886
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
887
+ # property that already exists on 'O' is accessor property and 'desc' is
888
+ # accessor descriptor, test updating the [[Configurable]] attribute value
889
+ # of 'P' (15.4.5.1 step 4.c)
890
+ 15.2.3.7-6-a-261: FAIL
891
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
892
+ # property that already exists on 'O' is accessor property and 'desc' is
893
+ # accessor descriptor, test updating multiple attribute values of 'P'
894
+ # (15.4.5.1 step 4.c)
895
+ 15.2.3.7-6-a-262: FAIL
896
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
897
+ # property, test the length property of 'O' is set as ToUint32('P') + 1 if
898
+ # ToUint32('P') equals to value of the length property in 'O' (15.4.5.1
899
+ # step 4.e.ii)
900
+ 15.2.3.7-6-a-264: FAIL
901
+ # Bug? Object.defineProperties - 'O' is an Array, 'P' is an array index named
902
+ # property, test the length property of 'O' is set as ToUint32('P') + 1 if
903
+ # ToUint32('P') is greater than value of the length property in 'O'
904
+ # (15.4.5.1 step 4.e.ii)
905
+ 15.2.3.7-6-a-265: FAIL
906
+ # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is own accessor
907
+ # property of 'O' which is also defined in [[ParameterMap]] of 'O', and
908
+ # 'desc' is accessor descriptor, test updating multiple attribute values of
909
+ # 'P' (10.6 [[DefineOwnProperty]] step 3)
910
+ 15.2.3.7-6-a-280: FAIL
911
+ # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is an array
912
+ # index named accessor property of 'O' but not defined in [[ParameterMap]]
913
+ # of 'O', and 'desc' is accessor descriptor, test updating multiple
914
+ # attribute values of 'P' (10.6 [[DefineOwnProperty]] step 3)
915
+ 15.2.3.7-6-a-292: FAIL
916
+ # Bug? Object.preventExtensions - indexed properties cannot be added into the
917
+ # returned object
918
+ 15.2.3.10-3-2: FAIL
919
+ # Bug? Object.preventExtensions - indexed properties cannot be added into a
920
+ # Function object
921
+ 15.2.3.10-3-3: FAIL
922
+ # Bug? Object.preventExtensions - indexed properties cannot be added into an
923
+ # Array object
924
+ 15.2.3.10-3-4: FAIL
925
+ # Bug? Object.preventExtensions - indexed properties cannot be added into a
926
+ # String object
927
+ 15.2.3.10-3-5-1: FAIL
928
+ # Bug? Object.preventExtensions - indexed properties cannot be added into a
929
+ # Boolean object
930
+ 15.2.3.10-3-6: FAIL
931
+ # Bug? Object.preventExtensions - indexed properties cannot be added into a
932
+ # Number object
933
+ 15.2.3.10-3-7: FAIL
934
+ # Bug? Object.preventExtensions - indexed properties cannot be added into a Date
935
+ # object
936
+ 15.2.3.10-3-8: FAIL
937
+ # Bug? Object.preventExtensions - indexed properties cannot be added into a
938
+ # RegExp object
939
+ 15.2.3.10-3-9: FAIL
940
+ # Bug? Object.preventExtensions - indexed properties cannot be added into an
941
+ # Error object
942
+ 15.2.3.10-3-10: FAIL
943
+ # Bug? Object.preventExtensions - indexed properties cannot be added into an
944
+ # Arguments object
945
+ 15.2.3.10-3-11: FAIL
946
+ # Bug? Object.preventExtensions - named properties cannot be added into the
947
+ # returned object
948
+ 15.2.3.10-3-12: FAIL
949
+ # Bug? Object.preventExtensions - named properties cannot be added into a
950
+ # Function object
951
+ 15.2.3.10-3-13: FAIL
952
+ # Bug? Object.preventExtensions - named properties cannot be added into an Array
953
+ # object
954
+ 15.2.3.10-3-14: FAIL
955
+ # Bug? Object.preventExtensions - named properties cannot be added into a String
956
+ # object
957
+ 15.2.3.10-3-15: FAIL
958
+ # Bug? Object.preventExtensions - named properties cannot be added into a
959
+ # Boolean object
960
+ 15.2.3.10-3-16: FAIL
961
+ # Bug? Object.preventExtensions - named properties cannot be added into a Number
962
+ # object
963
+ 15.2.3.10-3-17: FAIL
964
+ # Bug? Object.preventExtensions - named properties cannot be added into a Date
965
+ # object
966
+ 15.2.3.10-3-18: FAIL
967
+ # Bug? Object.preventExtensions - named properties cannot be added into a RegExp
968
+ # object
969
+ 15.2.3.10-3-19: FAIL
970
+ # Bug? Object.preventExtensions - named properties cannot be added into an Error
971
+ # object
972
+ 15.2.3.10-3-20: FAIL
973
+ # Bug? Object.preventExtensions - named properties cannot be added into an
974
+ # Arguments object
975
+ 15.2.3.10-3-21: FAIL
976
+ # Bug? Object.prototype.toString - '[object Undefined]' will be returned when
977
+ # 'this' value is undefined
978
+ 15.2.4.2-1-1: FAIL
979
+ # Bug? Object.prototype.toString - '[object Undefined]' will be returned when
980
+ # 'this' value is undefined
981
+ 15.2.4.2-1-2: FAIL
982
+ # Bug? Object.prototype.toString - '[object Null]' will be returned when 'this'
983
+ # value is null
984
+ 15.2.4.2-2-1: FAIL
985
+ # Bug? Object.prototype.toString - '[object Null]' will be returned when 'this'
986
+ # value is null
987
+ 15.2.4.2-2-2: FAIL
988
+ # Bug? Function.prototype.bind - [[Get]] attribute of 'caller' property in 'F'
989
+ # is thrower
990
+ 15.3.4.5-20-2: FAIL
991
+ # Bug? Function.prototype.bind - [[Set]] attribute of 'caller' property in 'F'
992
+ # is thrower
993
+ 15.3.4.5-20-3: FAIL
994
+ # Bug? Function.prototype.bind - [[Get]] attribute of 'arguments' property in
995
+ # 'F' is thrower
996
+ 15.3.4.5-21-2: FAIL
997
+ # Bug? Function.prototype.bind - [[Set]] attribute of 'arguments' property in
998
+ # 'F' is thrower
999
+ 15.3.4.5-21-3: FAIL
1000
+ # Bug? Array.prototype.concat will concat an Array when index property
1001
+ # (read-only) exists in Array.prototype (Step 5.c.i)
1002
+ 15.4.4.4-5-c-i-1: FAIL
1003
+ # Bug? Array.prototype.indexOf applied to undefined throws a TypeError
1004
+ 15.4.4.14-1-1: FAIL
1005
+ # Bug? Array.prototype.indexOf applied to null throws a TypeError
1006
+ 15.4.4.14-1-2: FAIL
1007
+ # Bug? Array.prototype.indexOf - side effects produced by step 1 are visible
1008
+ # when an exception occurs
1009
+ 15.4.4.14-5-28: FAIL
1010
+ # Bug? Array.prototype.indexOf - decreasing length of array does not delete
1011
+ # non-configurable properties
1012
+ 15.4.4.14-9-a-19: FAIL
1013
+ # Bug? Array.prototype.indexOf - element to be retrieved is own accessor
1014
+ # property that overrides an inherited data property on an Array
1015
+ 15.4.4.14-9-b-i-11: FAIL
1016
+ # Bug? Array.prototype.indexOf - element to be retrieved is own accessor
1017
+ # property that overrides an inherited accessor property on an Array
1018
+ 15.4.4.14-9-b-i-13: FAIL
1019
+ # Bug? Array.prototype.indexOf - element to be retrieved is own accessor
1020
+ # property without a get function on an Array
1021
+ 15.4.4.14-9-b-i-17: FAIL
1022
+ # Bug? Array.prototype.indexOf - element to be retrieved is own accessor
1023
+ # property without a get function that overrides an inherited accessor
1024
+ # property on an Array
1025
+ 15.4.4.14-9-b-i-19: FAIL
1026
+ # Bug? Array.prototype.indexOf - side-effects are visible in subsequent
1027
+ # iterations on an Array
1028
+ 15.4.4.14-9-b-i-28: FAIL
1029
+ # Bug? Array.prototype.indexOf - terminates iteration on unhandled exception on
1030
+ # an Array
1031
+ 15.4.4.14-9-b-i-30: FAIL
1032
+ # Bug? Array.prototype.lastIndexOf applied to undefined throws a TypeError
1033
+ 15.4.4.15-1-1: FAIL
1034
+ # Bug? Array.prototype.lastIndexOf applied to null throws a TypeError
1035
+ 15.4.4.15-1-2: FAIL
1036
+ # Bug? Array.prototype.lastIndexOf - side effects produced by step 1 are visible
1037
+ # when an exception occurs
1038
+ 15.4.4.15-5-28: FAIL
1039
+ # Bug? Array.prototype.lastIndexOf - deleting property of prototype causes
1040
+ # prototype index property not to be visited on an Array
1041
+ 15.4.4.15-8-a-14: FAIL
1042
+ # Bug? Array.prototype.lastIndexOf - decreasing length of array does not delete
1043
+ # non-configurable properties
1044
+ 15.4.4.15-8-a-19: FAIL
1045
+ # Bug? Array.prototype.lastIndexOf - element to be retrieved is own accessor
1046
+ # property that overrides an inherited data property on an Array
1047
+ 15.4.4.15-8-b-i-11: FAIL
1048
+ # Bug? Array.prototype.lastIndexOf - element to be retrieved is own accessor
1049
+ # property that overrides an inherited accessor property on an Array
1050
+ 15.4.4.15-8-b-i-13: FAIL
1051
+ # Bug? Array.prototype.lastIndexOf - element to be retrieved is own accessor
1052
+ # property without a get function on an Array
1053
+ 15.4.4.15-8-b-i-17: FAIL
1054
+ # Bug? Array.prototype.lastIndexOf - side-effects are visible in subsequent
1055
+ # iterations on an Array
1056
+ 15.4.4.15-8-b-i-28: FAIL
1057
+ # Bug? Array.prototype.lastIndexOf terminates iteration on unhandled exception
1058
+ # on an Array
1059
+ 15.4.4.15-8-b-i-30: FAIL
1060
+ # Bug? Array.prototype.every - side effects produced by step 2 are visible when
1061
+ # an exception occurs
1062
+ 15.4.4.16-4-8: FAIL
1063
+ # Bug? Array.prototype.every - side effects produced by step 3 are visible when
1064
+ # an exception occurs
1065
+ 15.4.4.16-4-9: FAIL
1066
+ # Bug? Array.prototype.every - the exception is not thrown if exception was
1067
+ # thrown by step 2
1068
+ 15.4.4.16-4-10: FAIL
1069
+ # Bug? Array.prototype.every - the exception is not thrown if exception was
1070
+ # thrown by step 3
1071
+ 15.4.4.16-4-11: FAIL
1072
+ # Bug? Array.prototype.every - calling with no callbackfn is the same as passing
1073
+ # undefined for callbackfn
1074
+ 15.4.4.16-4-15: FAIL
1075
+ # Bug? Array.prototype.every - decreasing length of array does not delete
1076
+ # non-configurable properties
1077
+ 15.4.4.16-7-b-16: FAIL
1078
+ # Bug? Array.prototype.every - element to be retrieved is own accessor property
1079
+ # on an Array
1080
+ 15.4.4.16-7-c-i-10: FAIL
1081
+ # Bug? Array.prototype.every - element to be retrieved is own accessor property
1082
+ # that overrides an inherited data property on an Array
1083
+ 15.4.4.16-7-c-i-12: FAIL
1084
+ # Bug? Array.prototype.every - element to be retrieved is own accessor property
1085
+ # that overrides an inherited accessor property on an Array
1086
+ 15.4.4.16-7-c-i-14: FAIL
1087
+ # Bug? Array.prototype.every - element to be retrieved is own accessor property
1088
+ # without a get function on an Array
1089
+ 15.4.4.16-7-c-i-18: FAIL
1090
+ # Bug? Array.prototype.every - element to be retrieved is own accessor property
1091
+ # without a get function that overrides an inherited accessor property on
1092
+ # an Array
1093
+ 15.4.4.16-7-c-i-20: FAIL
1094
+ # Bug? Array.prototype.every - element changed by getter on previous iterations
1095
+ # is observed on an Array
1096
+ 15.4.4.16-7-c-i-28: FAIL
1097
+ # Bug? Array.prototype.some - side effects produced by step 2 are visible when
1098
+ # an exception occurs
1099
+ 15.4.4.17-4-8: FAIL
1100
+ # Bug? Array.prototype.some - side effects produced by step 3 are visible when
1101
+ # an exception occurs
1102
+ 15.4.4.17-4-9: FAIL
1103
+ # Bug? Array.prototype.some - the exception is not thrown if exception was
1104
+ # thrown by step 2
1105
+ 15.4.4.17-4-10: FAIL
1106
+ # Bug? Array.prototype.some - the exception is not thrown if exception was
1107
+ # thrown by step 3
1108
+ 15.4.4.17-4-11: FAIL
1109
+ # Bug? Array.prototype.some - calling with no callbackfn is the same as passing
1110
+ # undefined for callbackfn
1111
+ 15.4.4.17-4-15: FAIL
1112
+ # Bug? Array.prototype.some - decreasing length of array does not delete
1113
+ # non-configurable properties
1114
+ 15.4.4.17-7-b-16: FAIL
1115
+ # Bug? Array.prototype.some - element to be retrieved is own accessor property
1116
+ # on an Array
1117
+ 15.4.4.17-7-c-i-10: FAIL
1118
+ # Bug? Array.prototype.some - element to be retrieved is own accessor property
1119
+ # that overrides an inherited data property on an Array
1120
+ 15.4.4.17-7-c-i-12: FAIL
1121
+ # Bug? Array.prototype.some - element to be retrieved is own accessor property
1122
+ # that overrides an inherited accessor property on an Array
1123
+ 15.4.4.17-7-c-i-14: FAIL
1124
+ # Bug? Array.prototype.some - element to be retrieved is own accessor property
1125
+ # without a get function on an Array
1126
+ 15.4.4.17-7-c-i-18: FAIL
1127
+ # Bug? Array.prototype.some - element to be retrieved is own accessor property
1128
+ # without a get function that overrides an inherited accessor property on
1129
+ # an Array
1130
+ 15.4.4.17-7-c-i-20: FAIL
1131
+ # Bug? Array.prototype.some - element changed by getter on previous iterations
1132
+ # is observed on an Array
1133
+ 15.4.4.17-7-c-i-28: FAIL
1134
+ # Bug? Array.prototype.forEach - side effects produced by step 2 are visible
1135
+ # when an exception occurs
1136
+ 15.4.4.18-4-8: FAIL
1137
+ # Bug? Array.prototype.forEach - side effects produced by step 3 are visible
1138
+ # when an exception occurs
1139
+ 15.4.4.18-4-9: FAIL
1140
+ # Bug? Array.prototype.forEach - the exception is not thrown if exception was
1141
+ # thrown by step 2
1142
+ 15.4.4.18-4-10: FAIL
1143
+ # Bug? Array.prototype.forEach - the exception is not thrown if exception was
1144
+ # thrown by step 3
1145
+ 15.4.4.18-4-11: FAIL
1146
+ # Bug? Array.prototype.forEach - calling with no callbackfn is the same as
1147
+ # passing undefined for callbackfn
1148
+ 15.4.4.18-4-15: FAIL
1149
+ # Bug? Array.prototype.forEach - decreasing length of array does not delete
1150
+ # non-configurable properties
1151
+ 15.4.4.18-7-b-16: FAIL
1152
+ # Bug? Array.prototype.forEach - element to be retrieved is own accessor
1153
+ # property on an Array
1154
+ 15.4.4.18-7-c-i-10: FAIL
1155
+ # Bug? Array.prototype.forEach - element to be retrieved is own accessor
1156
+ # property that overrides an inherited data property on an Array
1157
+ 15.4.4.18-7-c-i-12: FAIL
1158
+ # Bug? Array.prototype.forEach - element to be retrieved is own accessor
1159
+ # property that overrides an inherited accessor property on an Array
1160
+ 15.4.4.18-7-c-i-14: FAIL
1161
+ # Bug? Array.prototype.forEach - element to be retrieved is own accessor
1162
+ # property without a get function on an Array
1163
+ 15.4.4.18-7-c-i-18: FAIL
1164
+ # Bug? Array.prototype.forEach - element to be retrieved is own accessor
1165
+ # property without a get function that overrides an inherited accessor
1166
+ # property on an Array
1167
+ 15.4.4.18-7-c-i-20: FAIL
1168
+ # Bug? Array.prototype.forEach - element changed by getter on previous
1169
+ # iterations is observed on an Array
1170
+ 15.4.4.18-7-c-i-28: FAIL
1171
+ # Bug? Array.prototype.map - applied to Array-like object, 'length' is an own
1172
+ # data property that overrides an inherited accessor property
1173
+ 15.4.4.19-2-5: FAIL
1174
+ # Bug? Array.prototype.map - Side effects produced by step 2 are visible when an
1175
+ # exception occurs
1176
+ 15.4.4.19-4-8: FAIL
1177
+ # Bug? Array.prototype.map - Side effects produced by step 3 are visible when an
1178
+ # exception occurs
1179
+ 15.4.4.19-4-9: FAIL
1180
+ # Bug? Array.prototype.map - the exception is not thrown if exception was thrown
1181
+ # by step 2
1182
+ 15.4.4.19-4-10: FAIL
1183
+ # Bug? Array.prototype.map - the exception is not thrown if exception was thrown
1184
+ # by step 3
1185
+ 15.4.4.19-4-11: FAIL
1186
+ # Bug? Array.prototype.map - calling with no callbackfn is the same as passing
1187
+ # undefined for callbackfn
1188
+ 15.4.4.19-4-15: FAIL
1189
+ # Bug? Array.prototype.map - decreasing length of array does not delete
1190
+ # non-configurable properties
1191
+ 15.4.4.19-8-b-16: FAIL
1192
+ # Bug? Array.prototype.map - element to be retrieved is own accessor property on
1193
+ # an Array
1194
+ 15.4.4.19-8-c-i-10: FAIL
1195
+ # Bug? Array.prototype.map - element to be retrieved is own accessor property
1196
+ # that overrides an inherited data property on an Array
1197
+ 15.4.4.19-8-c-i-12: FAIL
1198
+ # Bug? Array.prototype.map - element to be retrieved is own accessor property
1199
+ # that overrides an inherited accessor property on an Array
1200
+ 15.4.4.19-8-c-i-14: FAIL
1201
+ # Bug? Array.prototype.map - element to be retrieved is own accessor property
1202
+ # without a get function on an Array
1203
+ 15.4.4.19-8-c-i-18: FAIL
1204
+ # Bug? Array.prototype.map - element to be retrieved is own accessor property
1205
+ # without a get function that overrides an inherited accessor property on
1206
+ # an Array
1207
+ 15.4.4.19-8-c-i-19: FAIL
1208
+ # Bug? Array.prototype.map - element changed by getter on previous iterations is
1209
+ # observed on an Array
1210
+ 15.4.4.19-8-c-i-28: FAIL
1211
+ # Bug? Array.prototype.filter - value of 'length' is a number (value is
1212
+ # negative)
1213
+ 15.4.4.20-3-7: FAIL
1214
+ # Bug? Array.prototype.filter - value of 'length' is a number (value is
1215
+ # Infinity)
1216
+ # V8 timeout
1217
+ 15.4.4.20-3-8: SKIP
1218
+ # Bug? Array.prototype.filter - 'length' is a string containing a negative
1219
+ # number
1220
+ 15.4.4.20-3-12: FAIL
1221
+ # Bug? Array.prototype.filter - 'length' is a string containing a decimal number
1222
+ 15.4.4.20-3-13: FAIL
1223
+ # Bug? Array.prototype.filter - 'length' is a string containing +/-Infinity
1224
+ 15.4.4.20-3-14: SKIP
1225
+ # Bug? Array.prototype.filter - value of 'length' is a positive non-integer,
1226
+ # ensure truncation occurs in the proper direction
1227
+ # V8 timeout
1228
+ 15.4.4.20-3-24: FAIL
1229
+ # Bug? Array.prototype.filter - value of 'length' is a negative non-integer,
1230
+ # ensure truncation occurs in the proper direction
1231
+ 15.4.4.20-3-25: FAIL
1232
+ # Bug? Array.prototype.filter - value of 'length' is boundary value (2^32)
1233
+ # V8 timeout
1234
+ 15.4.4.20-3-28: SKIP
1235
+ # Bug? Array.prototype.filter - value of 'length' is boundary value (2^32 + 1)
1236
+ # V8 timeout
1237
+ 15.4.4.20-3-29: SKIP
1238
+ # Bug? Array.prototype.filter - side effects produced by step 2 are visible when
1239
+ # an exception occurs
1240
+ 15.4.4.20-4-8: FAIL
1241
+ # Bug? Array.prototype.filter - side effects produced by step 3 are visible when
1242
+ # an exception occurs
1243
+ 15.4.4.20-4-9: FAIL
1244
+ # Bug? Array.prototype.filter - the exception is not thrown if exception was
1245
+ # thrown by step 2
1246
+ 15.4.4.20-4-10: FAIL
1247
+ # Bug? Array.prototype.filter - the exception is not thrown if exception was
1248
+ # thrown by step 3
1249
+ 15.4.4.20-4-11: FAIL
1250
+ # Bug? Array.prototype.filter - calling with no callbackfn is the same as
1251
+ # passing undefined for callbackfn
1252
+ 15.4.4.20-4-15: FAIL
1253
+ # Bug? Array.prototype.filter - properties can be added to prototype after
1254
+ # current position are visited on an Array-like object
1255
+ 15.4.4.20-9-b-6: FAIL
1256
+ # Bug? Array.prototype.filter - properties can be added to prototype after
1257
+ # current position are visited on an Array
1258
+ 15.4.4.20-9-b-7: FAIL
1259
+ # Bug? Array.prototype.filter - decreasing length of array does not delete
1260
+ # non-configurable properties
1261
+ 15.4.4.20-9-b-16: FAIL
1262
+ # Bug? Array.prototype.filter - element to be retrieved is own data property
1263
+ # that overrides an inherited accessor property on an Array
1264
+ 15.4.4.20-9-c-i-6: FAIL
1265
+ # Bug? Array.prototype.filter - element to be retrieved is own accessor property
1266
+ # on an Array
1267
+ 15.4.4.20-9-c-i-10: FAIL
1268
+ # Bug? Array.prototype.filter - element to be retrieved is own accessor property
1269
+ # that overrides an inherited data property on an Array
1270
+ 15.4.4.20-9-c-i-12: FAIL
1271
+ # Bug? Array.prototype.filter - element to be retrieved is own accessor property
1272
+ # that overrides an inherited accessor property on an Array
1273
+ 15.4.4.20-9-c-i-14: FAIL
1274
+ # Bug? Array.prototype.filter - element to be retrieved is inherited accessor
1275
+ # property on an Array
1276
+ 15.4.4.20-9-c-i-16: FAIL
1277
+ # Bug? Array.prototype.filter - element to be retrieved is own accessor property
1278
+ # without a get function on an Array
1279
+ 15.4.4.20-9-c-i-18: FAIL
1280
+ # Bug? Array.prototype.filter - element to be retrieved is own accessor property
1281
+ # without a get function that overrides an inherited accessor property on
1282
+ # an Array
1283
+ 15.4.4.20-9-c-i-20: FAIL
1284
+ # Bug? Array.prototype.filter - element to be retrieved is inherited accessor
1285
+ # property without a get function on an Array
1286
+ 15.4.4.20-9-c-i-22: FAIL
1287
+ # Bug? Array.prototype.filter - element changed by getter on previous iterations
1288
+ # is observed on an Array
1289
+ 15.4.4.20-9-c-i-28: FAIL
1290
+ # Bug? Array.prototype.reduce - value of 'length' is a number (value is
1291
+ # negative)
1292
+ 15.4.4.21-3-7: FAIL
1293
+ # Bug? Array.prototype.reduce - value of 'length' is a number (value is
1294
+ # Infinity)
1295
+ # V8 timeout.
1296
+ 15.4.4.21-3-8: SKIP
1297
+ # Bug? Array.prototype.reduce - 'length' is a string containing a negative
1298
+ # number
1299
+ 15.4.4.21-3-12: FAIL
1300
+ # Bug? Array.prototype.reduce - 'length' is a string containing a decimal number
1301
+ 15.4.4.21-3-13: FAIL
1302
+ # Bug? Array.prototype.reduce - 'length' is a string containing +/-Infinity
1303
+ # V8 timeout.
1304
+ 15.4.4.21-3-14: SKIP
1305
+ # Bug? Array.prototype.reduce - value of 'length' is a positive non-integer,
1306
+ # ensure truncation occurs in the proper direction
1307
+ 15.4.4.21-3-24: FAIL
1308
+ # Bug? Array.prototype.reduce - value of 'length' is a negative non-integer,
1309
+ # ensure truncation occurs in the proper direction
1310
+ 15.4.4.21-3-25: FAIL
1311
+ # Bug? Array.prototype.reduce - value of 'length' is boundary value (2^32)
1312
+ # V8 timeout.
1313
+ 15.4.4.21-3-28: SKIP
1314
+ # Bug? Array.prototype.reduce - value of 'length' is boundary value (2^32 + 1)
1315
+ # V8 timeout.
1316
+ 15.4.4.21-3-29: SKIP
1317
+ # Bug? Array.prototype.reduce - side effects produced by step 2 are visible when
1318
+ # an exception occurs
1319
+ 15.4.4.21-4-8: FAIL
1320
+ # Bug? Array.prototype.reduce - side effects produced by step 3 are visible when
1321
+ # an exception occurs
1322
+ 15.4.4.21-4-9: FAIL
1323
+ # Bug? Array.prototype.reduce - the exception is not thrown if exception was
1324
+ # thrown by step 2
1325
+ 15.4.4.21-4-10: FAIL
1326
+ # Bug? Array.prototype.reduce - the exception is not thrown if exception was
1327
+ # thrown by step 3
1328
+ 15.4.4.21-4-11: FAIL
1329
+ # Bug? Array.prototype.reduce - calling with no callbackfn is the same as
1330
+ # passing undefined for callbackfn
1331
+ 15.4.4.21-4-15: FAIL
1332
+ # Bug? Array.prototype.reduce - decreasing length of array in step 8 does not
1333
+ # delete non-configurable properties
1334
+ 15.4.4.21-9-b-16: FAIL
1335
+ # Bug? Array.prototype.reduce - decreasing length of array does not delete
1336
+ # non-configurable properties
1337
+ 15.4.4.21-9-b-29: FAIL
1338
+ # Bug? Array.prototype.reduceRight - value of 'length' is a number (value is
1339
+ # negative)
1340
+ 15.4.4.22-3-7: FAIL
1341
+ # Bug? Array.prototype.reduceRight - value of 'length' is a number (value is
1342
+ # Infinity)
1343
+ # V8 timeout.
1344
+ 15.4.4.22-3-8: SKIP
1345
+ # Bug? Array.prototype.reduceRight - value of 'length' is a string containing a
1346
+ # negative number
1347
+ 15.4.4.22-3-12: FAIL
1348
+ # Bug? Array.prototype.reduceRight - value of 'length' is a string containing a
1349
+ # decimal number
1350
+ 15.4.4.22-3-13: FAIL
1351
+ # Bug? Array.prototype.reduceRight - value of 'length' is a string containing
1352
+ # +/-Infinity
1353
+ # V8 timeout.
1354
+ 15.4.4.22-3-14: SKIP
1355
+ # Bug? Array.prototype.reduceRight - value of 'length' is a positive
1356
+ # non-integer, ensure truncation occurs in the proper direction
1357
+ 15.4.4.22-3-24: FAIL
1358
+ # Bug? Array.prototype.reduceRight - value of 'length' is a negative
1359
+ # non-integer, ensure truncation occurs in the proper direction
1360
+ 15.4.4.22-3-25: FAIL
1361
+ # Bug? Array.prototype.reduceRight - value of 'length' is boundary value (2^32)
1362
+ # V8 timeout.
1363
+ 15.4.4.22-3-28: SKIP
1364
+ # Bug? Array.prototype.reduceRight - value of 'length' is boundary value (2^32 +
1365
+ # 1)
1366
+ # V8 timeout.
1367
+ 15.4.4.22-3-29: SKIP
1368
+ # Bug? Array.prototype.reduceRight - side effects produced by step 2 are visible
1369
+ # when an exception occurs
1370
+ 15.4.4.22-4-8: FAIL
1371
+ # Bug? Array.prototype.reduceRight - side effects produced by step 3 are visible
1372
+ # when an exception occurs
1373
+ 15.4.4.22-4-9: FAIL
1374
+ # Bug? Array.prototype.reduceRight - the exception is not thrown if exception
1375
+ # was thrown by step 2
1376
+ 15.4.4.22-4-10: FAIL
1377
+ # Bug? Array.prototype.reduceRight - the exception is not thrown if exception
1378
+ # was thrown by step 3
1379
+ 15.4.4.22-4-11: FAIL
1380
+ # Bug? Array.prototype.reduceRight - calling with no callbackfn is the same as
1381
+ # passing undefined for callbackfn
1382
+ 15.4.4.22-4-15: FAIL
1383
+ # Bug? Array.prototype.reduceRight - element to be retrieved is own accessor
1384
+ # property that overrides an inherited data property on an Array
1385
+ 15.4.4.22-8-b-iii-1-12: FAIL
1386
+ # Bug? Array.prototype.reduceRight - element to be retrieved is own accessor
1387
+ # property without a get function on an Array
1388
+ 15.4.4.22-8-b-iii-1-18: FAIL
1389
+ # Bug? Array.prototype.reduceRight - element to be retrieved is own accessor
1390
+ # property without a get function that overrides an inherited accessor
1391
+ # property on an Array
1392
+ 15.4.4.22-8-b-iii-1-20: FAIL
1393
+ # Bug? Array.prototype.reduceRight - element changed by getter on current
1394
+ # iteration is observed in subsequent iterations on an Array
1395
+ 15.4.4.22-8-b-iii-1-30: FAIL
1396
+ # Bug? Array.prototype.reduceRight - Exception in getter terminate iteration on
1397
+ # an Array
1398
+ 15.4.4.22-8-b-iii-1-33: FAIL
1399
+ # Bug? Array.prototype.reduceRight - modifications to length don't change number
1400
+ # of iterations in step 9
1401
+ 15.4.4.22-8-b-2: FAIL
1402
+ # Bug? Array.prototype.reduceRight - deleting own property in step 8 causes
1403
+ # deleted index property not to be visited on an Array
1404
+ 15.4.4.22-9-b-9: FAIL
1405
+ # Bug? Array.prototype.reduceRight - deleting own property with prototype
1406
+ # property in step 8 causes prototype index property to be visited on an
1407
+ # Array
1408
+ 15.4.4.22-9-b-13: FAIL
1409
+ # Bug? Array.prototype.reduceRight - decreasing length of array in step 8 does
1410
+ # not delete non-configurable properties
1411
+ 15.4.4.22-9-b-16: FAIL
1412
+ # Bug? Array.prototype.reduceRight - deleting property of prototype causes
1413
+ # deleted index property not to be visited on an Array
1414
+ 15.4.4.22-9-b-24: FAIL
1415
+ # Bug? Array.prototype.reduceRight - deleting own property with prototype
1416
+ # property causes prototype index property to be visited on an Array
1417
+ 15.4.4.22-9-b-26: FAIL
1418
+ # Bug? Array.prototype.reduceRight - decreasing length of array does not delete
1419
+ # non-configurable properties
1420
+ 15.4.4.22-9-b-29: FAIL
1421
+ # Bug? Array.prototype.reduceRight - element changed by getter on previous
1422
+ # iterations is observed on an Array
1423
+ 15.4.4.22-9-c-i-30: FAIL
1424
+ # Bug? Array.prototype.reduceRight - modifications to length will change number
1425
+ # of iterations
1426
+ 15.4.4.22-9-9: FAIL
1427
+ # Bug? String.prototype.trim throws TypeError when string is undefined
1428
+ 15.5.4.20-1-1: FAIL
1429
+ # Bug? String.prototype.trim throws TypeError when string is null
1430
+ 15.5.4.20-1-2: FAIL
1431
+ # Bug? String.prototype.trim - 'S' is a string with all WhiteSpace
1432
+ 15.5.4.20-3-2: FAIL
1433
+ # Bug? String.prototype.trim - 'S' is a string with all union of WhiteSpace and
1434
+ # LineTerminator
1435
+ 15.5.4.20-3-3: FAIL
1436
+ # Bug? String.prototype.trim - 'S' is a string start with union of all
1437
+ # LineTerminator and all WhiteSpace
1438
+ 15.5.4.20-3-4: FAIL
1439
+ # Bug? String.prototype.trim - 'S' is a string end with union of all
1440
+ # LineTerminator and all WhiteSpace
1441
+ 15.5.4.20-3-5: FAIL
1442
+ # Bug? String.prototype.trim - 'S' is a string start with union of all
1443
+ # LineTerminator and all WhiteSpace and end with union of all
1444
+ # LineTerminator and all WhiteSpace
1445
+ 15.5.4.20-3-6: FAIL
1446
+ # Bug? String.prototype.trim handles whitepace and lineterminators (\\uFEFFabc)
1447
+ 15.5.4.20-4-10: FAIL
1448
+ # Bug? String.prototype.trim handles whitepace and lineterminators (abc\\uFEFF)
1449
+ 15.5.4.20-4-18: FAIL
1450
+ # Bug? String.prototype.trim handles whitepace and lineterminators
1451
+ # (\\uFEFF\\uFEFF)
1452
+ 15.5.4.20-4-34: FAIL
1453
+ # Bug? Date Time String Format - specified default values will be set for all
1454
+ # optional fields(MM, DD, mm, ss and time zone) when they are absent
1455
+ 15.9.1.15-1: FAIL
1456
+ # Bug? Date.prototype.toISOString - RangeError is thrown when value of date is
1457
+ # Date(1970, 0, -99999999, 0, 0, 0, -1), the time zone is UTC(0)
1458
+ 15.9.5.43-0-8: FAIL
1459
+ # Bug? Date.prototype.toISOString - RangeError is not thrown when value of date
1460
+ # is Date(1970, 0, 100000001, 0, 0, 0, -1), the time zone is UTC(0)
1461
+ 15.9.5.43-0-11: FAIL
1462
+ # Bug? Date.prototype.toISOString - RangeError is not thrown when value of date
1463
+ # is Date(1970, 0, 100000001, 0, 0, 0, 0), the time zone is UTC(0)
1464
+ 15.9.5.43-0-12: FAIL
1465
+ # Bug? Date.prototype.toISOString - RangeError is thrown when value of date is
1466
+ # Date(1970, 0, 100000001, 0, 0, 0, 1), the time zone is UTC(0)
1467
+ 15.9.5.43-0-13: FAIL
1468
+ # Bug? Date.prototype.toISOString - when value of year is -Infinity
1469
+ # Date.prototype.toISOString throw the RangeError
1470
+ 15.9.5.43-0-14: FAIL
1471
+ # Bug? Date.prototype.toISOString - value of year is Infinity
1472
+ # Date.prototype.toISOString throw the RangeError
1473
+ 15.9.5.43-0-15: FAIL
1474
+ # Bug? RegExp - the thrown error is SyntaxError instead of RegExpError when 'F'
1475
+ # contains any character other than 'g', 'i', or 'm'
1476
+ 15.10.4.1-3: FAIL
1477
+ # Bug? RegExp.prototype is itself a RegExp
1478
+ 15.10.6: FAIL
1479
+ # Bug? RegExp.prototype.source is of type String
1480
+ 15.10.7.1-1: FAIL
1481
+ # Bug? RegExp.prototype.source is a data property with default attribute values
1482
+ # (false)
1483
+ 15.10.7.1-2: FAIL
1484
+ # Bug? RegExp.prototype.global is of type Boolean
1485
+ 15.10.7.2-1: FAIL
1486
+ # Bug? RegExp.prototype.global is a data property with default attribute values
1487
+ # (false)
1488
+ 15.10.7.2-2: FAIL
1489
+ # Bug? RegExp.prototype.ignoreCase is of type Boolean
1490
+ 15.10.7.3-1: FAIL
1491
+ # Bug? RegExp.prototype.ignoreCase is a data property with default attribute
1492
+ # values (false)
1493
+ 15.10.7.3-2: FAIL
1494
+ # Bug? RegExp.prototype.multiline is of type Boolean
1495
+ 15.10.7.4-1: FAIL
1496
+ # Bug? RegExp.prototype.multiline is a data property with default attribute
1497
+ # values (false)
1498
+ 15.10.7.4-2: FAIL
1499
+ # Bug? RegExp.prototype.lastIndex is of type Number
1500
+ 15.10.7.5-1: FAIL
1501
+ # Bug? RegExp.prototype.lastIndex is a data property with specified attribute
1502
+ # values
1503
+ 15.10.7.5-2: FAIL
1504
+ # Bug? Error.prototype.toString return the value of 'msg' when 'name' is empty
1505
+ # string and 'msg' isn't undefined
1506
+ 15.11.4.4-8-1: FAIL