| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: "''arguments'' variable overrides ActivationObject.arguments" |
| description: Overriding arguments within functions body |
| THE_ANSWER="Answer to Life, the Universe, and Everything"; |
| var arguments = THE_ANSWER; |
| ////////////////////////////////////////////////////////////////////////////// |
| if (__func(42,42,42) !== THE_ANSWER) { |
| $ERROR('#1: "arguments" variable overrides ActivationObject.arguments'); |
| ////////////////////////////////////////////////////////////////////////////// |