| 123456789101112131415161718192021222324 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function test()
- {
- var i = 0;
- var simple_stackfunc = function() // this can be stack allocated
- {
- if (i == 0)
- {
- i++;
- return simple_stackfunc();
- }
- return i;
- }
- return simple_stackfunc();
- }
- WScript.Echo(test());
- WScript.Echo(test());
|