summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup-babel7/type-module.js
blob: 89e1c957469b58e7c11afb0ab686842b4d7d613a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var rollupBabel7TypeModule = (function () {
  'use strict';

  var moduleScoped = 1;
  var alsoModuleScoped = 2;

  function thirdModuleScoped() {}

  function test () {
    console.log("pause here", moduleScoped, alsoModuleScoped, thirdModuleScoped);
  }

  return test;

}());
//# sourceMappingURL=type-module.js.map