summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup-babel7/lex-and-nonlex.js
blob: f070be36e9849419499ac1efa28f7868f0b376fa (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
var rollupBabel7LexAndNonlex = (function () {
  'use strict';

  function _classCallCheck(instance, Constructor) {
    if (!(instance instanceof Constructor)) {
      throw new TypeError("Cannot call a class as a function");
    }
  }

  function root() {
    function someHelper() {
      console.log("pause here", root, Thing);
    }

    var Thing = function Thing() {
      _classCallCheck(this, Thing);
    };

    someHelper();
  }

  return root;

}());
//# sourceMappingURL=lex-and-nonlex.js.map