blob: ba2b5e903ddc48aa803d1df0bd75263b94358535 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// 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 simple_escape = function()
{
return "simple_escape";
}
throw simple_escape;
}
function runtest()
{
try
{
test();
}
catch (e)
{
return e;
}
};
WScript.Echo((runtest())());
WScript.Echo((runtest())());