summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/15.3.4.5-3-1.js
blob: 03b31395ef32af48a626df64b8c07694c1c7f86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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');

reportCompare(0, 0);