b6d950c979
https://people.mozilla.org/~jorendorff/es6-draft.html#sec-function.prototype.bind
Bound functions should have a name based on the function that was
bound.
This reverts the revert f2747ed9b4
. The original
CL was reverted because the Blink layout test broke. I have a CL that disables
these tests at: https://codereview.chromium.org/1196753003/
BUG=N
LOG=N
R=adamk
CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1195983002
Cr-Commit-Position: refs/heads/master@{#29193}
14 lines
481 B
JavaScript
14 lines
481 B
JavaScript
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
function f() {}
|
|
var fb = f.bind({});
|
|
assertEquals('bound f', fb.name);
|
|
assertEquals('function bound f() { [native code] }', fb.toString());
|
|
|
|
Object.defineProperty(f, 'name', {value: 42});
|
|
var fb2 = f.bind({});
|
|
assertEquals('bound ', fb2.name);
|
|
assertEquals('function bound () { [native code] }', fb2.toString());
|