| 123456789101112131415161718192021222324 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- var crossSiteGlo = WScript.LoadScriptFile("es5array_crosssite.js", "samethread");
- Object.defineProperty(Array.prototype, "1", { value: "const", writable: false });
- function test()
- {
- var arr = new Array(2);
- arr[0] = 0;
- arr[1] = 1;
- WScript.Echo(arr);
- crossSiteGlo.SetArrayIndex(arr, 1);
- WScript.Echo(arr);
- }
- test();
- test();
|