| 1234567891011121314151617181920212223242526 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- try {
- var e = Error("123");
- e.somevalue = "xyz";
- e.stack = "abacaba";
- WScript.Echo("description = " + e.message);
- WScript.Echo("stack = " + e.stack);
- for (var p in e) {
- WScript.Echo(p + " = " + e[p]);
- }
-
- throw e;
- }
- catch (ex) {
- WScript.Echo("----------------------");
- WScript.Echo("description = " + e.message);
- WScript.Echo("stack = " + e.stack);
- for (var p in ex) {
- WScript.Echo(p + " = " + ex[p]);
- }
- }
|