| 12345678910111213141516171819202122232425262728 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- var a = new Array();
- function f()
- {
- var i = new Object();
- i
- Object.defineProperty(i, "Pass", {value: 1, writable:false, enumerable: true} );
- for (var attr in i)
- {
- a.push(attr);
- }
- for (var attr in Array)
- {}
- }
- f();
- CollectGarbage();
- for (var index = 0; index < a.length; index++)
- {
- WScript.Echo(a[index]);
- }
|