52e487d7a2
R=arv@chromium.org BUG=v8:3330 LOG=N Review URL: https://codereview.chromium.org/808723002 Cr-Commit-Position: refs/heads/master@{#25847}
36 lines
901 B
JavaScript
36 lines
901 B
JavaScript
// Copyright 2014 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.
|
|
//
|
|
// This file relies on the fact that the following declarations have been made
|
|
// in runtime.js:
|
|
// var $Function = global.Function;
|
|
// var $Array = global.Array;
|
|
|
|
"use strict";
|
|
|
|
function FunctionToMethod(homeObject) {
|
|
if (!IS_SPEC_FUNCTION(this)) {
|
|
throw MakeTypeError('toMethod_non_function',
|
|
[%ToString(this), typeof this]);
|
|
|
|
}
|
|
|
|
if (!IS_SPEC_OBJECT(homeObject)) {
|
|
throw MakeTypeError('toMethod_non_object',
|
|
[%ToString(homeObject)]);
|
|
}
|
|
|
|
return %ToMethod(this, homeObject);
|
|
}
|
|
|
|
function SetupHarmonyClasses() {
|
|
%CheckIsBootstrapping();
|
|
|
|
InstallFunctions($Function.prototype, DONT_ENUM, $Array(
|
|
"toMethod", FunctionToMethod
|
|
));
|
|
}
|
|
|
|
SetupHarmonyClasses();
|