NoProf.js 580 B

12345678910111213141516171819202122232425
  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 blah(){}
  6. function bar(x)
  7. {
  8. if (!x)
  9. throw 1;
  10. blah();
  11. return "Passed";
  12. }
  13. function test(x)
  14. {
  15. WScript.Echo(bar(x));
  16. }
  17. try {
  18. test(0);
  19. }catch(e)
  20. {}
  21. test(1);