| //------------------------------------------------------------------------------------------------------- | |
| // Copyright (C) Microsoft. All rights reserved. | |
| // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. | |
| //------------------------------------------------------------------------------------------------------- | |
| function f(formal) { | |
| // arguments references force scope objects but allow delayed capture in non-debug mode only. | |
| // Verify that scope slot allocation is still the same in both modes. | |
| var local; | |
| local = 0; | |
| var i = (function (x) { | |
| arguments[0]; | |
| return ++local; | |
| })(); | |
| if (i !== 1 || local !== 1) { | |
| WScript.Echo('fail: i == ', i, ', local == ', local); | |
| throw 0; | |
| } | |
| arguments[0]; | |
| } | |
| WScript.Attach(f); | |
| WScript.Detach(f); | |
| WScript.Echo('pass'); |