summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/workers/parser/tests/fixtures/scopes/simple-module.js
blob: b25cc7a8633ce8b3aee96a43ffc2728b21289778 (plain)
1
2
3
4
5
6
7
8
9
10
11
import foo from "foo";

console.log(foo);

var one = 1;
let two = 2;
const three = 3;

function fn() {}

this;