blob: 281363b336494accc5c48c0cc73b7a06e02549c9 [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).
---*/
var noop = function() {};
var subject = Object.preventExtensions({ existing: null });
subject.__defineGetter__('existing', noop);
assert.throws(TypeError, function() {
subject.__defineGetter__('brand new', noop);
});