JET-180 Rename typeof to typeinfo, type or make it a function

This commit is contained in:
Andrey Breslav
2011-07-08 20:27:40 +04:00
parent 7ae58d2efb
commit d4020a422b
16 changed files with 300 additions and 428 deletions
@@ -3,5 +3,5 @@ class Point() {
fun foo() : typeinfo.TypeInfo<Point> {
val p = Point();
return typeof(p);
return typeinfo.typeinfo<Point>(p);
}