S11.4.1_A3.2_T2.js (552B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: If the property doesn't have the DontDelete attribute, return true 6 esid: sec-delete-operator-runtime-semantics-evaluation 7 description: Checking declared variable 8 ---*/ 9 10 //CHECK#1 11 function MyFunction() {} 12 MyFunction.prop = 1; 13 if (delete MyFunction.prop !== true) { 14 throw new Test262Error( 15 '#1: function MyFunction(){}; MyFunction.prop = 1; delete MyFunction.prop === true' 16 ); 17 } 18 19 reportCompare(0, 0);