summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js')
-rw-r--r--test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js
index 7b0e441b3..6b7362927 100644
--- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js
+++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-26.js
@@ -9,24 +9,24 @@ description: >
property causes prototype index property to be visited on an Array
---*/
- var testResult = false;
+var testResult = false;
- function callbackfn(prevVal, curVal, idx, obj) {
- if (idx === 1 && curVal === 1) {
- testResult = true;
- }
- }
- var arr = [0, 111];
+function callbackfn(prevVal, curVal, idx, obj) {
+ if (idx === 1 && curVal === 1) {
+ testResult = true;
+ }
+}
+var arr = [0, 111];
- Object.defineProperty(arr, "2", {
- get: function () {
- delete arr[1];
- return 0;
- },
- configurable: true
- });
+Object.defineProperty(arr, "2", {
+ get: function() {
+ delete arr[1];
+ return 0;
+ },
+ configurable: true
+});
- Array.prototype[1] = 1;
- arr.reduceRight(callbackfn, "initialValue");
+Array.prototype[1] = 1;
+arr.reduceRight(callbackfn, "initialValue");
assert(testResult, 'testResult !== true');