summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/simple4.js
blob: 2ce4eb991d311ab6faa5aba7cd49f6da007324eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function funcA() {
  debugger;
  funcB();
  funcC();
}

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

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

funcA();