blob: 10217f5457d3da031490a9749bf5b8909300eef1 [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 extensible
info: |
[...]
5. Perform ? DefinePropertyOrThrow(O, key, desc).
features: [__getter__]
---*/
var noop = function() {};
var subject = Object.preventExtensions({ existing: null });
subject.__defineGetter__('existing', noop);
assert.throws(TypeError, function() {
subject.__defineGetter__('brand new', noop);
});