Skip to content

Commit dab15f6

Browse files
aduh95targos
authored andcommitted
esm: graduate top-level-await to stable
Removes the experimental label in the docs and makes the `--experimental-top-level-await` flag a no-op. V8 has removed the harmony flag in V8 9.1 and consider the feature stable, there's no reason to keep it experimental in Node.js. PR-URL: #42875 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent e15d22c commit dab15f6

File tree

4 files changed

+3
-18
lines changed

4 files changed

+3
-18
lines changed

doc/api/esm.md

-2
Original file line numberDiff line numberDiff line change
@@ -566,8 +566,6 @@ would provide the exports interface for the instantiation of `module.wasm`.
566566
added: v14.8.0
567567
-->
568568
569-
> Stability: 1 - Experimental
570-
571569
The `await` keyword may be used in the top level body of an ECMAScript module.
572570
573571
Assuming an `a.mjs` with

src/module_wrap.cc

+1-7
Original file line numberDiff line numberDiff line change
@@ -428,13 +428,7 @@ void ModuleWrap::Evaluate(const FunctionCallbackInfo<Value>& args) {
428428
return;
429429
}
430430

431-
// If TLA is enabled, `result` is the evaluation's promise.
432-
// Otherwise, `result` is the last evaluated value of the module,
433-
// which could be a promise, which would result in it being incorrectly
434-
// unwrapped when the higher level code awaits the evaluation.
435-
if (env->isolate_data()->options()->experimental_top_level_await) {
436-
args.GetReturnValue().Set(result.ToLocalChecked());
437-
}
431+
args.GetReturnValue().Set(result.ToLocalChecked());
438432
}
439433

440434
void ModuleWrap::GetNamespace(const FunctionCallbackInfo<Value>& args) {

src/node_options.cc

+2-8
Original file line numberDiff line numberDiff line change
@@ -700,14 +700,8 @@ PerIsolateOptionsParser::PerIsolateOptionsParser(
700700
kAllowedInEnvironment);
701701
Implies("--report-signal", "--report-on-signal");
702702

703-
AddOption("--experimental-top-level-await",
704-
"",
705-
&PerIsolateOptions::experimental_top_level_await,
706-
kAllowedInEnvironment);
707-
AddOption("--harmony-top-level-await", "", V8Option{});
708-
Implies("--experimental-top-level-await", "--harmony-top-level-await");
709-
Implies("--harmony-top-level-await", "--experimental-top-level-await");
710-
ImpliesNot("--no-harmony-top-level-await", "--experimental-top-level-await");
703+
AddOption(
704+
"--experimental-top-level-await", "", NoOp{}, kAllowedInEnvironment);
711705

712706
Insert(eop, &PerIsolateOptions::get_per_env_options);
713707
}

src/node_options.h

-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ class PerIsolateOptions : public Options {
205205
bool track_heap_objects = false;
206206
bool report_uncaught_exception = false;
207207
bool report_on_signal = false;
208-
bool experimental_top_level_await = true;
209208
std::string report_signal = "SIGUSR2";
210209
inline EnvironmentOptions* get_per_env_options();
211210
void CheckOptions(std::vector<std::string>* errors) override;

0 commit comments

Comments
 (0)