1
0
Fork 0
firefox/devtools/client/webconsole/test/browser/test-autocomplete-mapped.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
436 B
JavaScript

"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