sourceInfo_01.js 505 B

123456789101112131415
  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. //
  6. // Test uncaught exception source info
  7. //
  8. function dummy() {
  9. // do nothing
  10. }
  11. dummy();
  12. throw 123; //9,3
  13. dummy();