S15.3.5.1_A1_T1.js (617B)
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: | 6 The value of the length property is usually an integer that indicates the 7 'typical' number of arguments expected by the function 8 es5id: 15.3.5.1_A1_T1 9 description: Checking length property of Function("arg1,arg2,arg3", null) 10 ---*/ 11 12 var f = new Function("arg1,arg2,arg3", null); 13 14 assert(f.hasOwnProperty('length'), 'f.hasOwnProperty(\'length\') must return true'); 15 assert.sameValue(f.length, 3, 'The value of f.length is expected to be 3'); 16 17 reportCompare(0, 0);