summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js')
-rw-r--r--test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js42
1 files changed, 21 insertions, 21 deletions
diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js
index 31ab61068..a039a64b7 100644
--- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js
+++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-b-28.js
@@ -9,30 +9,30 @@ description: >
prototype property causes prototype index property to be visited
---*/
- var testResult = false;
+var testResult = false;
- function callbackfn(prevVal, curVal, idx, obj) {
- if (idx === 2 && curVal === "prototype") {
- testResult = true;
- }
- }
- var arr = [0, 1, 2, 3];
+function callbackfn(prevVal, curVal, idx, obj) {
+ if (idx === 2 && curVal === "prototype") {
+ testResult = true;
+ }
+}
+var arr = [0, 1, 2, 3];
- Object.defineProperty(Array.prototype, "2", {
- get: function () {
- return "prototype";
- },
- configurable: true
- });
+Object.defineProperty(Array.prototype, "2", {
+ get: function() {
+ return "prototype";
+ },
+ configurable: true
+});
- Object.defineProperty(arr, "3", {
- get: function () {
- arr.length = 2;
- return 1;
- },
- configurable: true
- });
+Object.defineProperty(arr, "3", {
+ get: function() {
+ arr.length = 2;
+ return 1;
+ },
+ configurable: true
+});
- arr.reduceRight(callbackfn, "initialValue");
+arr.reduceRight(callbackfn, "initialValue");
assert(testResult, 'testResult !== true');