| 12345678910111213141516171819202122232425262728293031 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function write(args)
- {
- WScript.Echo(args);
- }
- write("test 1");
- function test()
- {
- obj[0] = 1;
- write(obj[0]);
- }
- var obj = [];
- Object.defineProperty(Array.prototype, "0", { value:"blah", writable: false });
- test();
- test();
- write("test 2");
- function test2(){
- var VarArr0 = [];
- VarArr0[4] = 1;
- Object.defineProperty(Array.prototype, "4", {configurable : true, get: function(){ return 30;}});
-
- WScript.Echo(VarArr0.slice(0, 10));
- };
- // generate profile
- test2();
|