bailout-eh.js 529 B

12345678910111213141516171819202122
  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 g = 1;
  6. function test()
  7. {
  8. // Bailout point
  9. throw g;
  10. }
  11. try
  12. {
  13. test()
  14. }
  15. catch (e)
  16. {
  17. WScript.Echo(e);
  18. }
  19. WScript.Echo(g);