summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js')
-rw-r--r--test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js36
1 files changed, 18 insertions, 18 deletions
diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js
index bd1bcb4f3..e364fbbb7 100644
--- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js
+++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-11.js
@@ -9,27 +9,27 @@ description: >
step 8 causes deleted index property not to be visited on an Array
---*/
- var accessed = false;
- var testResult = true;
+var accessed = false;
+var testResult = true;
- function callbackfn(prevVal, curVal, idx, obj) {
- accessed = true;
- if (idx === 1) {
- testResult = false;
- }
- }
+function callbackfn(prevVal, curVal, idx, obj) {
+ accessed = true;
+ if (idx === 1) {
+ testResult = false;
+ }
+}
- var arr = [0, , , ];
- Object.defineProperty(arr, "3", {
- get: function () {
- delete Array.prototype[1];
- return 0;
- },
- configurable: true
- });
+var arr = [0, , , ];
+Object.defineProperty(arr, "3", {
+ get: function() {
+ delete Array.prototype[1];
+ return 0;
+ },
+ configurable: true
+});
- Array.prototype[1] = 1;
- arr.reduceRight(callbackfn);
+Array.prototype[1] = 1;
+arr.reduceRight(callbackfn);
assert(testResult, 'testResult !== true');
assert(accessed, 'accessed !== true');