argobjlengthhoist.js 983 B

1234567891011121314151617181920212223242526
  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. function Tm()
  6. {
  7. var n = arguments[0];
  8. for(var s = 0; s<n.length; s++)
  9. {
  10. var f = n.charCodeAt(s);
  11. }
  12. }
  13. Tm("reallyLongTestString" + Math.random());
  14. Tm("reallyLongTestString" + Math.random());
  15. Tm("reallyLongTestString" + Math.random());
  16. Tm("reallyLongTestString" + Math.random());
  17. Tm("reallyLongTestString" + Math.random());
  18. Tm("reallyLongTestString" + Math.random());
  19. Tm("reallyLongTestString" + Math.random());
  20. Tm("reallyLongTestString" + Math.random());
  21. Tm("reallyLongTestString" + Math.random());
  22. Tm("reallyLongTestString" + Math.random());
  23. WScript.Echo("pass");