From c38bf81a9f1dc9dec475e7514e90579a8c77dfbf Mon Sep 17 00:00:00 2001 From: "hemanth.hm" Date: Wed, 7 Jul 2021 18:07:20 +0000 Subject: [PATCH] fixup: removal from node options and manpage. --- doc/api/repl.md | 1 - doc/node.1 | 5 ----- src/node_options.h | 1 - 3 files changed, 7 deletions(-) diff --git a/doc/api/repl.md b/doc/api/repl.md index 028ac1850b8a0d..10d7e39523139c 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -763,7 +763,6 @@ For an example of running a REPL instance over [`curl(1)`][], see: [TTY keybindings]: readline.md#readline_tty_keybindings [ZSH]: https://en.wikipedia.org/wiki/Z_shell [`'uncaughtException'`]: process.md#process_event_uncaughtexception -[`--experimental-repl-await`]: cli.md#cli_experimental_repl_await [`ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE`]: errors.md#errors_err_domain_cannot_set_uncaught_exception_capture [`ERR_INVALID_REPL_INPUT`]: errors.md#errors_err_invalid_repl_input [`curl(1)`]: https://curl.haxx.se/docs/manpage.html diff --git a/doc/node.1 b/doc/node.1 index a0bbb2b781b7ba..fb1e81ee016dbb 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -153,11 +153,6 @@ to use as a custom module loader. .It Fl -experimental-policy Use the specified file as a security policy. . -.It Fl -experimental-repl-await -Enable experimental top-level -.Sy await -keyword support in REPL. -. .It Fl -experimental-specifier-resolution Select extension resolution algorithm for ES Modules; either 'explicit' (default) or 'node'. . diff --git a/src/node_options.h b/src/node_options.h index d737c4f55aee36..a78fb4d7c515ca 100644 --- a/src/node_options.h +++ b/src/node_options.h @@ -112,7 +112,6 @@ class EnvironmentOptions : public Options { std::string experimental_policy; std::string experimental_policy_integrity; bool has_policy_integrity_string; - bool experimental_repl_await = false; bool experimental_vm_modules = false; bool expose_internals = false; bool frozen_intrinsics = false;