| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| A property is created with name callee with property |
| attributes { DontEnum } and no others |
| description: Checking existence of arguments.callee property |
| return arguments.hasOwnProperty("callee"); |
| $ERROR("#1: arguments object doesn't contains property 'callee'"); |
| $ERROR("#1: arguments object doesn't exists"); |
| var f2 = function(){return arguments.hasOwnProperty("callee");}; |
| $ERROR("#2: arguments object doesn't contains property 'callee'"); |
| $ERROR("#2: arguments object doesn't exists"); |