summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/fixtures/type-module/input.js
blob: 058577e13c1d4b30bcc47c8fcaa70098a39a3233 (plain)
1
2
3
4
5
6
7
8
var moduleScoped = 1;
let alsoModuleScoped = 2;

function thirdModuleScoped() {}

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