summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js')
-rw-r--r--test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js28
1 files changed, 13 insertions, 15 deletions
diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js
index 055231576..e9b625ee7 100644
--- a/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js
+++ b/test/built-ins/Array/prototype/some/15.4.4.17-7-c-i-3.js
@@ -10,24 +10,22 @@ description: >
Array-like object
---*/
-var kValue = "abc";
+ var kValue = "abc";
-function callbackfn(val, idx, obj) {
- if (idx === 5) {
- return val === kValue;
- }
- return false;
-}
+ function callbackfn(val, idx, obj) {
+ if (idx === 5) {
+ return val === kValue;
+ }
+ return false;
+ }
-var proto = {
- 5: 100
-};
+ var proto = { 5: 100 };
-var Con = function() {};
-Con.prototype = proto;
+ var Con = function () { };
+ Con.prototype = proto;
-var child = new Con();
-child[5] = kValue;
-child.length = 10;
+ var child = new Con();
+ child[5] = kValue;
+ child.length = 10;
assert(Array.prototype.some.call(child, callbackfn), 'Array.prototype.some.call(child, callbackfn) !== true');