S15.3.5.1_A1_T3.js (667B)
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_T3 9 description: > 10 Checking length property of 11 Function("arg1,arg2,arg3","arg1,arg2","arg3", null) 12 ---*/ 13 14 var f = new Function("arg1,arg2,arg3", "arg1,arg2", "arg3", null); 15 16 assert(f.hasOwnProperty('length'), 'f.hasOwnProperty(\'length\') must return true'); 17 assert.sameValue(f.length, 6, 'The value of f.length is expected to be 6'); 18 19 reportCompare(0, 0);