summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/workers/parser/tests/fixtures/scopes/arrow-function.js
blob: 4ec72fd45063a0900051b354cc108d2c31e0d09e (plain)
1
2
3
4
5
6
7
8
9
10
11
export {};

let outer = (p1) => {
  console.log(this);

  (function() {
    var inner = (p2) => {
      console.log(this);
    };
  })();
};