795ee9f26d
There are few reasons why fake overrides should not be printed: 1. Fake overrides are not serialized in metadata. So, if one will run "dump-metadata" they won't see there any fake overrides. Neither their signatures. It would be inconsistent if "dump-metadata-signatures" command would show them. 2. In order to properly build fake overrides the KLIB tool needs the dependency library with the super class or interface, which is not available unless this is stdlib or one of the built-in Kotlin/Native platform libraries. KLIB tool does not support any reasonable means for passing dependencies through CLI arguments. If such possibility is added in the future, it would be the right time to support printing fake overrides (probably under a separate CLI option). ^KT-62340