core: add classpath for precise class types resolving

This commit is contained in:
Skylot
2013-08-01 18:19:54 +04:00
parent d0f120c314
commit 6ddb71e21f
20 changed files with 620 additions and 84 deletions
@@ -37,6 +37,9 @@ public class Utils {
}
public static String typeStr(ArgType type) {
if (type == null) {
return "null";
}
if (type.isObject()) {
String cls = type.getObject();
int dot = cls.lastIndexOf('.');