summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js b/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js
index 477b95d8e..5bf792565 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-13.js
@@ -8,13 +8,15 @@ description: >
'boundArgs' is 1, length of 'ExtraArgs' is 0, and with 'boundThis'
---*/
- var obj = { prop: "abc" };
+var obj = {
+ prop: "abc"
+};
- var func = function (x) {
- return this === obj && x === 1 &&
- arguments[0] === 1 && arguments.length === 1 && this.prop === "abc";
- };
+var func = function(x) {
+ return this === obj && x === 1 &&
+ arguments[0] === 1 && arguments.length === 1 && this.prop === "abc";
+};
- var newFunc = Function.prototype.bind.call(func, obj, 1);
+var newFunc = Function.prototype.bind.call(func, obj, 1);
assert(newFunc(), 'newFunc() !== true');