blob: d7cf26497b215dacd8c5e09d8cac1b0e8455a0e2 [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 nested function name displays show properly in the locals window "value" column.
function f1() {
var a = 0;
function f2() {
var b = 1;
function f3() {
var c = a + b;
c; /**bp:locals()**/
}
f3();
}
f2();
}
f1();
WScript.Echo("PASSED");