blob: d3e533e2fd63144dd12f09ff042f578ead23b693 [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 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 = "function named 'arguments'";
try {
eval("function arguments() {}");
} catch (e) {
write("Exception: " + str + " " + exceptToString(e));
return;
}
write("Return: " + str);
})();
(function Test2() {
var str = "function named 'eval'";
try {
eval("function eval() {}");
} catch (e) {
write("Exception: " + str + " " + exceptToString(e));
return;
}
write("Return: " + str);
})();