| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function __getProperties(obj) {
- let properties = [];
- for (let name of Object.getOwnPropertyNames(obj)) {
- properties.push(name);
- }
- return properties;
- }
- function __getRandomObject() {
- }
- function __getRandomProperty(obj, seed) {
- let properties = __getProperties(obj);
- return properties[seed % properties.length];
- }
- (function __f_2672() {
- __v_13851 = {
- get p() {
- }
- }
- __v_13862 = {
- get p() {
- },
- p: 2,
- set p(__v_13863) { WScript.Echo('pass'); this.q = __v_13863},
- p:9,
- q:3,
- set p(__v_13863) { WScript.Echo('pass'); this.q = __v_13863},
- };
- __v_13862.p = 0;
- if (__v_13862.q !== 0) WScript.Echo(__v_13862.q);
- })();
- __v_13851[__getRandomProperty(__v_13851, 483779)] = __getRandomObject();
- let o = {get a(){},x:0};
- if (o.x !== 0) WScript.Echo('fail x0');
- Object.defineProperty(o, 'x', {configurable:true,enumerable:true,get:function(){return 'x1'}});
- if (o.x !== 'x1') WScript.Echo('fail x1');
- let p = {get a(){},x:0};
- p.y = 'y';
- Object.defineProperty(p, 'x', {configurable:true,enumerable:true,get:function(){return 'x2'}});
- if (p.x !== 'x2') WScript.Echo('fail x2');
- if (p.y !== 'y') WScript.Echo('fail y');
|