summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup-babel6/step-over-function-params.js
blob: d5cfd786751593c331c1c840b22da41af94a9063 (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 rollupBabel6StepOverFunctionParams = (function () {
  'use strict';

  function test(a1) {

    var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
        a3 = _ref.a3,
        a4 = _ref.a4,
        _ref$a = _ref.a5;

    _ref$a = _ref$a === undefined ? {} : _ref$a;
    var a7 = _ref$a.a6;

    console.log("pause next here");
  }

  function fn() {
    console.log("pause here");
    test("1", undefined, { a3: "3", a4: "4", a5: { a6: "7" } });
  }

  return fn;

}());
//# sourceMappingURL=step-over-function-params.js.map