implementation classes implement JetObject; initial implementation of getTypeInfo() method and typeof operator

This commit is contained in:
Dmitry Jemerov
2011-05-13 13:42:17 +02:00
parent 7d96459357
commit 1966d6d12c
11 changed files with 140 additions and 20 deletions
@@ -0,0 +1,4 @@
class Point() {
}
fun foo() = new Point()
@@ -0,0 +1,7 @@
class Point() {
}
fun foo() {
val p = new Point();
return typeof(p);
}