summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5-3-1.js
blob: 0a88f6d3b7545a66d94374ea35752c63ec4c921e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.3.4.5-3-1
description: Function.prototype.bind - each arg is defined in A in list order
---*/

        var foo = function (x, y) {
            return new Boolean((x + y) === "ab" && arguments[0] === "a" &&
                arguments[1] === "b" && arguments.length === 2);
        };

        var obj = foo.bind({}, "a", "b");

assert((obj() == true), '(obj() == true) !== true');