summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-with-ignorelist/bundle.js
blob: 90d153a657c12217b79713d1cd4414e298d0fe9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(function () {
  'use strict';

  function original1() {
    debugger;
    console.log("The first original source");
  }

  function original2() {
    debugger;
    console.log("The second original source");
  }

  function original3() {
    debugger;
    console.log("The third original source");
  }

  function original4() {
    debugger;
    console.log("The fourth original source");
  }

  function original5() {
    console.log("The fifth original source");
  }

  original1();
  original2();
  original3();
  original4();
  original5();

})();
//# sourceMappingURL=bundle.js.map