summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/workers/parser/tests/fixtures/scopes/function-expression.js
blob: 436413533e4dba956b73b388d7bc34000e73b951 (plain)
1
2
3
4
5
6
7
export {};

let fn = function(p1) {};

let fn2 = function withName(p2) {
  console.log(this);
};