| 1234567891011121314151617181920212223242526 |
- //-------------------------------------------------------------------------------------------------------
- // 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;
- // This only create one function assignment. The name f1 is only available inside the function
- // via LdFuncExpr
- var f = function f1()
- {
- if (i == 0)
- {
- i++;
- return f1();
- }
- return i;
- }
- return f();
- }
- WScript.Echo(test());
- WScript.Echo(test());
|