| 123456789101112131415161718 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- const x = "let x";
- Object.seal(this);
- try {
- Object.defineProperty(this, 'x', {value:'20', configurable: true });
- }
- catch(e) {
- WScript.Echo("exception: " + e);
- }
- WScript.Echo(x);
- WScript.Echo(this.x);
- WScript.Echo(Object.isSealed(this));
|