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

class Foo {
  prop = this.init();

  other = do {
    var one;
    let two;
  };
}