blob: 8d2e8d5bcc0475332f2b677e3821926be31bc11e [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
if (this.WScript && this.WScript.LoadScriptFile) {
this.WScript.LoadScriptFile("../UnitTestFramework/TrimStackTracePath.js");
}
function foo(a)
{
try{
baz();
}catch(ex){
WScript.Echo(TrimStackTracePath(ex.stack));
}
try{
baz();
}catch(ex){
WScript.Echo(TrimStackTracePath(ex.stack));
}
}
foo(1);
foo(1);
foo(1.1);