10.6-12-1.js (334B)
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: 10.6-12-1 6 description: Accessing callee property of Arguments object is allowed 7 flags: [noStrict] 8 ---*/ 9 10 function testcase() { 11 arguments.callee; 12 } 13 testcase(); 14 15 reportCompare(0, 0);