summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/doc-step-in-uninitialized.html
blob: 7f0e6a56a5d4e2852402d0d9923f382a9f7a16cb (plain)
1
2
3
4
5
6
7
8
9
10
11
<script>
function main() {
  debugger;
  foo();
}
function foo() {
  let x;
  let y = 3;
  return 0;
}
</script>