summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/fixtures/functions/input.js
blob: 70e7b2cfb90a31f034220f66fbd6f35efb96f337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default function root() {

  function decl(p1) {
    const inner = function inner(p2) {
      const arrow = (p3) => {
        console.log("pause here", p3, arrow, p2, inner, p1, decl, root);
      };
      arrow();
    };
    inner();
  }

  decl();
}