blob: 78b7ee40250c92b9e0acb573310c5ddb250ed828 [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.
//-------------------------------------------------------------------------------------------------------
"use strict";
function write(v) { WScript.Echo(v + ""); }
function exceptToString(ee) {
if (ee instanceof TypeError) return "TypeError";
if (ee instanceof ReferenceError) return "ReferenceError";
if (ee instanceof EvalError) return "EvalError";
if (ee instanceof SyntaxError) return "SyntaxError";
return "Unknown Error";
}
(function Test1() {
var str = "with stmt";
try {
eval("with({}) {};");
} catch (e) {
write("Exception: " + str + " " + exceptToString(e));
return;
}
write("Return: " + str);
})();