blob: 3d3b5df0a84a657940dc3d27fb9b6b0e4788736b [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 test0() {
function bar2(x) {
x = 1; /**bp:stack();setFrame(1);locals();**/
}
switch ('abc') {
case 1:
function a() { }
function b() {
a = 1;
}
b();
break;
case 'abc':
y = bar2({ a: 1 });
break;
default:
break;
}
}
test0();
test0();
WScript.Echo('pass');