blob: 648aaf3f4152ee7f528a8c33e21b00caa94f02d6 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Tests that function declaration bindings show correctly for the
// register slot case.
function test() {
var a = 1;
{
a; /**bp:locals()**/
function f1() { }
a; /**bp:locals()**/
}
a;/**bp:locals()**/
}
test();
WScript.Echo("PASSED")