Closed
Bug 1792404
Opened 3 years ago
Closed 3 years ago
Collect import stack for static import
Categories
(Core :: XPConnect, task)
Core
XPConnect
Tracking
()
RESOLVED
FIXED
107 Branch
| Tracking | Status | |
|---|---|---|
| firefox107 | --- | fixed |
People
(Reporter: arai, Assigned: arai)
References
Details
Attachments
(1 file)
The following consumer expects all modules returned by Cu.loadedESModules can be passed to Cu.getModuleImportStack if the stack recording is enabled, but the stack information is collected only for importESModule and other API, and not for static import declaration.
for (let module of Cu.loadedESModules) {
modules[module] = collectStacks
? Cu.getModuleImportStack(module)
We should collect stack also for modules imported by static import
| Assignee | ||
Updated•3 years ago
|
Blocks: esm-ification
| Assignee | ||
Comment 1•3 years ago
|
||
Pushed by arai_a@mac.com:
https://hg.mozilla.org/integration/autoland/rev/e5eaab71bd41
Collect import stack for all imported system ESMs. r=jonco,Standard8
Comment 3•3 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 3 years ago
status-firefox107:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 107 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•