Improved name lookup in order to allow partial names to refer to external

(imported) packages.

Bug: 30977424
Change-Id: I0a3757d6c3b10229627e2c1d6bc6176f88e13151
diff --git a/Type.cpp b/Type.cpp
index 912bc25..da45677 100644
--- a/Type.cpp
+++ b/Type.cpp
@@ -30,6 +30,10 @@
     return false;
 }
 
+bool Type::isNamedType() const {
+    return false;
+}
+
 const ScalarType *Type::resolveToScalarType() const {
     return NULL;
 }