[AST] Move ModuleEntity from libIDE to libAST so that the ASTPrinter can use it.

Swift SVN r23680
This commit is contained in:
Argyrios Kyrtzidis
2014-12-04 05:52:16 +00:00
parent 2cb14c32fe
commit 1552772a15
9 changed files with 64 additions and 56 deletions

View File

@@ -57,7 +57,7 @@ private:
void printTypeRef(const TypeDecl *TD, Identifier Name) override {
return OtherPrinter.printTypeRef(TD, Name);
}
void printModuleRef(const Module *Mod, Identifier Name) override {
void printModuleRef(ModuleEntity Mod, Identifier Name) override {
return OtherPrinter.printModuleRef(Mod, Name);
}