2
0

bailout_loopbodystart.js 498 B

123456789101112
  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. var a = new Object;
  6. a.push = function(i)
  7. {
  8. for(__i = 0; __i < 1; ++__i)
  9. WScript.Echo("Pass")
  10. };
  11. a.push(1)