data: changed name of Java generic type to use name of declaration

* changed the name resolution of generic type instantiations to use the name of the type's declaration instead of using the provided type arguments here.
* fixed tests
This commit is contained in:
malte_langkabel
2016-10-03 12:50:51 +02:00
parent 3dffd55f75
commit 47d7a3a509
4 changed files with 6 additions and 2 deletions
+1
View File
@@ -37,6 +37,7 @@ public class ASTDumper extends JavaAstVisitor{
line += " [" + ((ClassOrInterfaceType)n).getName() + "]";
}
System.out.println(line);
}