| //------------------------------------------------------------------------------------------------------- |
| // Copyright (C) Microsoft. All rights reserved. |
| // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. |
| //------------------------------------------------------------------------------------------------------- |
| //Test0: NativeIntArray to NativeFloatArray |
| ary[4]=1.1; //Should Bailout as the type of the array is changed. |
| //Test1: NativeFloatArray - popping missing value. |
| var ary2 = new Array(10); |
| WScript.Echo("length = "+ary2.length); |
| WScript.Echo("length = "+ary2.length); |
| WScript.Echo("length = "+ary2.length); |