sourceInfo_10.js 521 B

12345678910111213141516
  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. var obj = {};
  13. obj.nosuchfunc();
  14. dummy();