2017-07-11 07:56:40 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
|
|
|
|
(function TestReflectGetPrototypeOfOnPrimitive() {
|
2019-06-12 14:00:50 +00:00
|
|
|
function f() {
|
|
|
|
return Reflect.getPrototypeOf('');
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2017-07-11 07:56:40 +00:00
|
|
|
assertThrows(f, TypeError);
|
|
|
|
assertThrows(f, TypeError);
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
assertThrows(f, TypeError);
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function TestObjectGetPrototypeOfOnPrimitive() {
|
2019-06-12 14:00:50 +00:00
|
|
|
function f() {
|
|
|
|
return Object.getPrototypeOf('');
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2017-07-11 07:56:40 +00:00
|
|
|
assertSame(String.prototype, f());
|
|
|
|
assertSame(String.prototype, f());
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
assertSame(String.prototype, f());
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function TestDunderProtoOnPrimitive() {
|
2019-06-12 14:00:50 +00:00
|
|
|
function f() {
|
|
|
|
return ''.__proto__;
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2017-07-11 07:56:40 +00:00
|
|
|
assertSame(String.prototype, f());
|
|
|
|
assertSame(String.prototype, f());
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
assertSame(String.prototype, f());
|
|
|
|
})();
|