t5.js 646 B

1234567891011121314151617181920
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. /*
  6. "splice" cache transitions among proto and local cache.
  7. */
  8. var arr = new Array(1);
  9. var newarr = arr.splice(1, 2);
  10. var obj = { };
  11. obj.length = 2;
  12. obj.splice = Array.prototype.splice;
  13. Object.prototype.splice = Array.prototype.splice;
  14. WScript.Echo("ok");