summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/15.3.4.5.1-4-2.js
blob: b4476f72be0ff8654af95fe6a1a4e70358731acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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.1-4-2
description: >
    [[Call]] - 'F''s [[BoundThis]] is used as the 'this' value of
    calling the [[Call]] internal method of 'F''s [[TargetFunction]]
    when 'F' is called
---*/

var obj = {
  "prop": "a"
};

var func = function() {
  return this;
};

var newFunc = Function.prototype.bind.call(func, obj);

assert.sameValue(newFunc(), obj, 'newFunc()');

reportCompare(0, 0);