Extremely conservative escape analysis. (#212)

This commit is contained in:
Nikolay Igotti
2017-02-08 19:15:55 +03:00
committed by GitHub
parent a856e16d2f
commit 4b27074979
9 changed files with 571 additions and 68 deletions
@@ -11,8 +11,9 @@ public abstract class AbstractCollection<out E> protected constructor() : Collec
override fun isEmpty(): Boolean = size == 0
/*
override fun toString(): String = joinToString(", ", "[", "]") {
if (it === this) "(this Collection)" else it.toString()
} */
@Fixme
override fun toString(): String = TODO() // joinToString(", ", "[", "]") {
// if (it === this) "(this Collection)" else it.toString()
// }
}