test113.js 814 B

123456789101112131415161718192021222324252627
  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 test0() {
  6. var GiantPrintArray = [];
  7. var IntArr1 = [];
  8. for(var i = 0; i < 2; ++i) {
  9. var id30 = IntArr1;
  10. IntArr1 = IntArr1.pop();
  11. IntArr1 = id30;
  12. GiantPrintArray.push(IntArr1[IntArr1.length]);
  13. GiantPrintArray.push(test0a());
  14. }
  15. function test0a() {
  16. try {
  17. }
  18. catch(ex) {
  19. }
  20. }
  21. };
  22. test0();
  23. test0();
  24. WScript.Echo("pass");