blob: 8b3b33d9a23a3706e0b956b096fe72d67f6ee177 [file]
//-------------------------------------------------------------------------------------------------------
// 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());