summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-2.js
blob: 329b1e78c59087b83498cea28447c50624556b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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()');