15.2.3.6-4-322.js (1197B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.2.3.6-4-322 6 description: > 7 Object.defineProperty - 'O' is an Arguments object, 'P' is own 8 accessor property of 'O', test TypeError is thrown when updating 9 the [[Set]] attribute value of 'P' which is not configurable (10.6 10 [[DefineOwnProperty]] step 4) 11 includes: [propertyHelper.js] 12 ---*/ 13 14 (function() { 15 function setFunc(value) { 16 this.genericPropertyString = value; 17 } 18 Object.defineProperty(arguments, "genericProperty", { 19 set: setFunc, 20 configurable: false 21 }); 22 try { 23 Object.defineProperty(arguments, "genericProperty", { 24 set: function(value) { 25 this.genericPropertyString1 = value; 26 } 27 }); 28 throw new Test262Error("Expected an exception."); 29 } catch (e) { 30 verifyWritable(arguments, "genericProperty", "genericPropertyString"); 31 32 if (!(e instanceof TypeError)) { 33 throw new Test262Error("Expected TypeError, got " + e); 34 } 35 } 36 37 verifyProperty(arguments, "genericProperty", { 38 enumerable: false, 39 configurable: false, 40 }); 41 }(1, 2, 3)); 42 43 reportCompare(0, 0);