forked from mirrors/gecko-dev
35 lines
1 KiB
ReStructuredText
35 lines
1 KiB
ReStructuredText
reject-eager-module-in-lazy-getter
|
|
==================================
|
|
|
|
Rejects defining a lazy getter for module that's known to be loaded early in the
|
|
startup process and it is not necessary to lazy load it.
|
|
|
|
Examples of incorrect code for this rule:
|
|
-----------------------------------------
|
|
|
|
.. code-block:: js
|
|
|
|
ChromeUtils.defineESModuleGetters(lazy, {
|
|
AppConstants: "resource://gre/modules/AppConstants.sys.mjs",
|
|
});
|
|
XPCOMUtils.defineLazyModuleGetters(lazy, {
|
|
XPCOMUtils: "resource://gre/modules/XPCOMUtils.jsm",
|
|
});
|
|
XPCOMUtils.defineLazyModuleGetter(
|
|
lazy,
|
|
"AppConstants",
|
|
"resource://gre/modules/AppConstants.jsm",
|
|
});
|
|
|
|
Examples of correct code for this rule:
|
|
---------------------------------------
|
|
|
|
.. code-block:: js
|
|
|
|
import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs";
|
|
const { XPCOMUtils } = ChromeUtils.import(
|
|
"resource://gre/modules/XPCOMUtils.jsm"
|
|
);
|
|
const { AppConstants } = ChromeUtils.import(
|
|
"resource://gre/modules/AppConstants.jsm"
|
|
);
|