summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/test-autocomplete-mapped.js
blob: 33762c03a449a6e55faae72c4d317bf0c76176ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use strict";
const i = { x: { y: { importResult: true } } };
const j = { get x() { return blackbox({ get y() { return blackbox({ getterResult: 1 }); } }); } };

const blackbox = x=>[x].pop();

function firstCall() {
  const t = 42;
  const u = i.x.y;
  const v = j.x.y.getterResult;
  const o = {
    get value() {
      return blackbox(Promise.resolve());
    }
  };
  debugger;
}
//# sourceMappingURL=test-autocomplete-mapped.js.map