summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-compressed/v2/another-original.js
blob: 790775ed9930a001e327d55a2b2083480bb276a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This content of this file is added before that of original-with-no-update.js in the generated file
// bundle-with-another-original.js, its main goal is to just cause the content of the generated file to change.
function funcA() {
  funcB();
  funcC();
}

function funcB() {
  console.log("Hello!");
}

function funcC() {
  console.log("You made it!");
}
funcA();