blob: 754a7c0aa355165d62444bfa45a49688aaaa4f13 [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-additional-properties-of-the-object.prototype-object
description: Behavior when "this" value is not Object-coercible
info: |
1. Let O be ? ToObject(this value).
---*/
var __defineGetter__ = Object.prototype.__defineGetter__;
var noop = function() {};
var toStringCount = 0;
var key = {
toString: function() {
toStringCount += 1;
}
};
assert.sameValue(typeof __defineGetter__, 'function');
assert.throws(TypeError, function() {
__defineGetter__.call(undefined, key, noop);
}, 'undefined');
assert.throws(TypeError, function() {
__defineGetter__.call(null, key, noop);
}, 'null');
assert.sameValue(toStringCount, 0);