From 9d6266d6ad961c75f010b271d8362546d906d7d6 Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Mon, 29 Jan 2024 13:05:53 +0100 Subject: [PATCH] [KLIB tool] Use more correct wording in HELP output "dump ... of all public declarations" -> "dump ... of all non-private declarations" ^KT-62340 --- .../src/main/kotlin/org/jetbrains/kotlin/cli/klib/main.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kotlin-native/klib/src/main/kotlin/org/jetbrains/kotlin/cli/klib/main.kt b/kotlin-native/klib/src/main/kotlin/org/jetbrains/kotlin/cli/klib/main.kt index 7f4ecd95c9b..784fff5f48e 100644 --- a/kotlin-native/klib/src/main/kotlin/org/jetbrains/kotlin/cli/klib/main.kt +++ b/kotlin-native/klib/src/main/kotlin/org/jetbrains/kotlin/cli/klib/main.kt @@ -65,9 +65,9 @@ fun printUsage() { Remove the library from the local repository. dump-ir Dump the intermediate representation (IR) of all declarations in the library. The output of this command is intended to be used for debugging purposes only. - dump-ir-signatures Dump IR signatures of all public declarations in the library and all public declarations consumed - by this library (as two separate lists). This command relies purely on the data in IR. - dump-metadata-signatures Dump IR signatures of all public declarations in the library. Note, that this command renders + dump-ir-signatures Dump IR signatures of all non-private declarations in the library and all non-private declarations + consumed by this library (as two separate lists). This command relies purely on the data in IR. + dump-metadata-signatures Dump IR signatures of all non-private declarations in the library. Note, that this command renders the signatures based on the library metadata. This is different from "dump-ir-signatures", which renders signatures based on the IR. On practice, in most cases there is no difference between output of these two commands. However, if IR transforming compiler plugins