summaryrefslogtreecommitdiff
path: root/test/fixtures/source-map/uglify-throw-original.js
blob: 099faa175dbfd89336476ccb297afd33335951d9 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * comments dropped by uglify.
 */
function Hello() {
  throw Error('goodbye');
}

setImmediate(function() {
  Hello();
});