blob: e30b60f0720ff5748065b6f7b1fb7350c1dd0bd6 [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.prototype.__proto__
es6id: B.2.2.1
description: Abrupt completion from ToObject
info: |
1. Let O be ? ToObject(this value).
---*/
var get = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').get;
assert.sameValue(typeof get, 'function');
assert.throws(TypeError, function() {
get.call(undefined);
});
assert.throws(TypeError, function() {
get.call(null);
});