summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-09 11:35:37 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 11:35:37 -0500
commita01de4a722d088055a7d84d8c691ddd7109edb34 (patch)
treef583c8efd40a3b699261f1166da75a9861d83e7b /test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js
parent7b01f9799f99851955f23c18c12e6651c1941022 (diff)
downloadqtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js')
-rw-r--r--test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js27
1 files changed, 14 insertions, 13 deletions
diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js
index e6a171d69..b906e19e7 100644
--- a/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js
+++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-9-c-i-22.js
@@ -9,21 +9,22 @@ description: >
accessor property without a get function on an Array
---*/
- var testResult = false;
- var initialValue = 0;
- function callbackfn(prevVal, curVal, idx, obj) {
- if (idx === 1) {
- testResult = (curVal === undefined);
- }
- }
+var testResult = false;
+var initialValue = 0;
- Object.defineProperty(Array.prototype, "1", {
- set: function () { },
- configurable: true
- });
+function callbackfn(prevVal, curVal, idx, obj) {
+ if (idx === 1) {
+ testResult = (curVal === undefined);
+ }
+}
- var arr = [0, , 2];
+Object.defineProperty(Array.prototype, "1", {
+ set: function() {},
+ configurable: true
+});
- arr.reduce(callbackfn, initialValue);
+var arr = [0, , 2];
+
+arr.reduce(callbackfn, initialValue);
assert(testResult, 'testResult !== true');