blob: 2bf909422bbdc67cb5c445b67e004fd225c55e81 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Validation of the bug 592506, properties added during evaluation should be added correctly.
function test()
{
this.ttt1 = 31;
}
function bar()
{
var k = 1; /**bp:locals(1);evaluate("test();");locals(1)**/
}
bar();
WScript.Echo("Pass");