initlocals.js 622 B

12345678910111213141516171819
  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 foo(i) {
  6. while (true) {
  7. if (i > 1000 * 1000)
  8. break;
  9. if (i == 1) {
  10. var x = i;
  11. if (!x.q) ++i;
  12. x.x;
  13. }
  14. i++;
  15. }
  16. }
  17. foo(1);
  18. WScript.Echo('pass');