summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Dawson <mdawson@devrus.com>2022-11-28 16:32:43 -0500
committerDanielle Adams <adamzdanielle@gmail.com>2023-01-04 20:31:50 -0500
commitedcb31d1f559871425ec860551ec5c047e08a995 (patch)
tree4cf75f277129ccb25ec9caf9e35d2aa07eeb7151
parente940662b27d2fe9b01e6582cb71138b0c874e08a (diff)
downloadnode-new-edcb31d1f559871425ec860551ec5c047e08a995.tar.gz
src: cleanup on disambiguating native modules
Found while backporting https://github.com/nodejs/node/pull/45663 Fixup one rename missed Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/45665 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
-rw-r--r--src/env.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/env.cc b/src/env.cc
index b0613dfbc1..9888b1bb86 100644
--- a/src/env.cc
+++ b/src/env.cc
@@ -1577,11 +1577,11 @@ void Environment::PrintInfoForSnapshotIfDebug() {
if (enabled_debug_list()->enabled(DebugCategory::MKSNAPSHOT)) {
fprintf(stderr, "At the exit of the Environment:\n");
principal_realm()->PrintInfoForSnapshot();
- fprintf(stderr, "\nNative modules without cache:\n");
+ fprintf(stderr, "\nBuiltins without cache:\n");
for (const auto& s : builtins_without_cache) {
fprintf(stderr, "%s\n", s.c_str());
}
- fprintf(stderr, "\nNative modules with cache:\n");
+ fprintf(stderr, "\nBuiltins with cache:\n");
for (const auto& s : builtins_with_cache) {
fprintf(stderr, "%s\n", s.c_str());
}