1
0
Fork 0
firefox/docs/code-quality/lint/linters/eslint-plugin-mozilla/rules/reject-top-level-await.rst
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

26 lines
597 B
ReStructuredText

reject-top-level-await
======================
Rejects ``await`` at the top-level of code in modules. Top-level ``await`` is
not currently support in Gecko's component modules, so this is rejected.
Examples of incorrect code for this rule:
-----------------------------------------
.. code-block:: js
await foo;
if (expr) {
await foo;
}
for await (let x of [1, 2, 3]) { }
Examples of correct code for this rule:
---------------------------------------
.. code-block:: js
async function() { await foo; }
async function() { for await (let x of [1, 2, 3]) { } }