summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js')
-rw-r--r--test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js19
1 files changed, 9 insertions, 10 deletions
diff --git a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js
index 9f2cd87c7..57e36efaa 100644
--- a/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js
+++ b/test/built-ins/Array/prototype/forEach/15.4.4.18-2-17.js
@@ -9,16 +9,15 @@ description: >
implements its own property get method
---*/
-var result = false;
+ var result = false;
+ function callbackfn(val, idx, obj) {
+ result = (obj.length === 2);
+ }
-function callbackfn(val, idx, obj) {
- result = (obj.length === 2);
-}
-
-var func = function(a, b) {
- arguments[2] = 9;
- Array.prototype.forEach.call(arguments, callbackfn);
- return result;
-};
+ var func = function (a, b) {
+ arguments[2] = 9;
+ Array.prototype.forEach.call(arguments, callbackfn);
+ return result;
+ };
assert(func(12, 11), 'func(12, 11) !== true');