| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Since arguments property has attribute { DontDelete }, only its elements |
| description: Deleting arguments[i] and returning result of the operation |
| for (var i=0; i < arguments.length; i++) |
| was_del= was_del || delete arguments[i]; |
| ////////////////////////////////////////////////////////////////////////////// |
| if (!__func("A","B",1,2)) { |
| $ERROR('#1: Since arguments property has attribute { DontDelete } elements of arguments can be deleted'); |
| ////////////////////////////////////////////////////////////////////////////// |