More refactoring; allow ConstructorLookup to find constructors in classes.

Swift SVN r2171
This commit is contained in:
Eli Friedman
2012-06-07 23:57:18 +00:00
parent 72e1bed79e
commit 18dfa5cf7d
4 changed files with 162 additions and 181 deletions

View File

@@ -105,13 +105,6 @@ public:
void lookupMembers(Type BaseType, Identifier Name,
SmallVectorImpl<ValueDecl*> &Result);
/// lookupValueConstructor - Lookup value constructors for the specified
/// BaseType, and return them in Result.This looks in both the
/// type declaration itself and in extensions.
void lookupValueConstructors(Type BaseType,
SmallVectorImpl<ValueDecl*> &Result);
static bool classof(const Module *M) {
return true;
}