Skip to content

Commit 29f2dab

Browse files
mhdawsondanielleadams
authored andcommitted
src: cleanup on disambiguating native modules
Found while backporting #45663 Fixup one rename missed Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: #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>
1 parent c1f90a5 commit 29f2dab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/env.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1577,11 +1577,11 @@ void Environment::PrintInfoForSnapshotIfDebug() {
15771577
if (enabled_debug_list()->enabled(DebugCategory::MKSNAPSHOT)) {
15781578
fprintf(stderr, "At the exit of the Environment:\n");
15791579
principal_realm()->PrintInfoForSnapshot();
1580-
fprintf(stderr, "\nNative modules without cache:\n");
1580+
fprintf(stderr, "\nBuiltins without cache:\n");
15811581
for (const auto& s : builtins_without_cache) {
15821582
fprintf(stderr, "%s\n", s.c_str());
15831583
}
1584-
fprintf(stderr, "\nNative modules with cache:\n");
1584+
fprintf(stderr, "\nBuiltins with cache:\n");
15851585
for (const auto& s : builtins_with_cache) {
15861586
fprintf(stderr, "%s\n", s.c_str());
15871587
}

0 commit comments

Comments
 (0)