Closed
Bug 1772103
Opened 3 years ago
Closed 3 years ago
Use plain object for lazy getter in layout/
Categories
(Core :: Layout, task)
Core
Layout
Tracking
()
RESOLVED
FIXED
103 Branch
| Tracking | Status | |
|---|---|---|
| firefox103 | --- | fixed |
People
(Reporter: arai, Assigned: arai)
References
Details
Attachments
(1 file)
+++ This bug was initially created as a clone of Bug #1772007 +++
Many JSM files define lazy getters on the per-JSM global this object.
The global this object doesn't exist in ES module, and those lazy getters need to be moved to a plain object const lazy = {};, and each consumer needs to be rewritten to refer the lazy getter with lazy.foo.
This migration is done by automated script in bug 1608279.
| Assignee | ||
Comment 1•3 years ago
|
||
Depends on D147891
Pushed by arai_a@mac.com:
https://hg.mozilla.org/integration/autoland/rev/34ce731d9665
Use plain object for lazy getter in layout/tools/reftest/. r=dholbert
Status: ASSIGNED → RESOLVED
Closed: 3 years ago
status-firefox103:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 103 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•