summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup-babel6/this-arguments-bindings.js
blob: 22530cd47d9bea3dabd871ee1e1871709dc277d3 (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 rollupBabel6ThisArgumentsBindings = (function () {
  'use strict';

  function root() {
    function fn(arg) {
      var _this = this,
          _arguments = arguments;

      console.log(this, arguments);
      console.log("pause here", fn, root);

      var arrow = function arrow(argArrow) {
        console.log(_this, _arguments);
        console.log("pause here", fn, root);
      };
      arrow("arrow-arg");
    }

    fn.call("this-value", "arg-value");
  }

  return root;

}());
//# sourceMappingURL=this-arguments-bindings.js.map