alignment.js 506 B

123456789101112131415161718192021222324252627282930
  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 f()
  6. {
  7. }
  8. f();
  9. try
  10. {
  11. f();
  12. throw 1;
  13. }
  14. catch (e)
  15. {
  16. f();
  17. }
  18. finally
  19. {
  20. f();
  21. }
  22. f();