@@ -869,18 +869,18 @@ class ModuleEntity {
869869 ModuleEntity (const ModuleDecl *Mod) : Mod(Mod) {}
870870 ModuleEntity (const clang::Module *Mod) : Mod(static_cast <const void *>(Mod)){}
871871
872- // @param useRealNameIfAliased Whether to use the module's real name in case
873- // module aliasing is used. For example, if a file
874- // has `import Foo` and `-module-alias Foo=Bar` is
875- // passed, treat Foo as an alias and Bar as the real
876- // module name as its dependency. This only applies
877- // to Swift modules.
878- // @return The module name; for Swift modules, the real module name could be
879- // different from the name if module aliasing is used.
872+ // / @param useRealNameIfAliased Whether to use the module's real name in case
873+ // / module aliasing is used. For example, if a file
874+ // / has `import Foo` and `-module-alias Foo=Bar` is
875+ // / passed, treat Foo as an alias and Bar as the real
876+ // / module name as its dependency. This only applies
877+ // / to Swift modules.
878+ // / @return The module name; for Swift modules, the real module name could be
879+ // / different from the name if module aliasing is used.
880880 StringRef getName (bool useRealNameIfAliased = false ) const ;
881881
882- // For Swift modules, it returns the same result as \c ModuleEntity::getName(bool).
883- // For Clang modules, it returns the result of \c clang::Module::getFullModuleName.
882+ // / For Swift modules, it returns the same result as \c ModuleEntity::getName(bool).
883+ // / For Clang modules, it returns the result of \c clang::Module::getFullModuleName.
884884 std::string getFullName (bool useRealNameIfAliased = false ) const ;
885885
886886 bool isSystemModule () const ;
0 commit comments