jet.typeinfo.TypeInfo -> jet.TypeInfo

This commit is contained in:
Andrey Breslav
2011-12-26 18:59:48 +04:00
parent 5653dabe95
commit 3b0ca42e0b
113 changed files with 91 additions and 236 deletions
@@ -1,7 +1,7 @@
class Point() {
}
fun foo() : typeinfo.TypeInfo<Point> {
fun foo() : TypeInfo<Point> {
val p = Point();
return typeinfo.typeinfo<Point>(p);
return typeinfo<Point>(p);
}