diff --git a/idea/src/jet/Library.jet b/idea/src/jet/Library.jet index 28e0610879e..f58492cf2dd 100644 --- a/idea/src/jet/Library.jet +++ b/idea/src/jet/Library.jet @@ -10,6 +10,9 @@ namespace typeinfo { // Can't write a body due to a bootstrapping problem (see JET-74) fun Any?.equals(other : Any?) : Boolean// = this === other +// Returns "null" for null +fun Any?.toString() : String// = this === other + class Iterator { fun next() : T abstract val hasNext : Boolean