summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/line-start-bindings-es6.js
blob: 99e4713c0db2cd4ae882749d80b7e01ce92c6d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var rollupLineStartBindingsEs6 = (function () {
  'use strict';

  function root() {
    function aFunc(){

      // The 'this' binding here is also its own line, so the comment above
      // applies here too.
      this.thing = 4;

      console.log("pause here", root);
    }

    aFunc.call({ });
  }

  return root;

}());
//# sourceMappingURL=line-start-bindings-es6.js.map