JS: support reified type references in closures

This commit is contained in:
Alexey Tsvetkov
2015-05-06 16:10:08 +03:00
parent 85dc7a1ac4
commit 79ab47d374
9 changed files with 114 additions and 45 deletions
@@ -0,0 +1,21 @@
package foo
class A
class B
fun apply<T, R>(x: T, fn: T.()->R): R = x.fn()
inline fun test<reified T, reified R>(x: Any, y: Any): Boolean =
x is T && apply(y) { this is R }
fun box(): String {
val a = A()
val b = B()
assertEquals(true, test<A, B>(a, b), "test<A, B>(a, b)")
assertEquals(false, test<A, B>(a, a), "test<A, B>(a, a)")
assertEquals(false, test<A, B>(b, b), "test<A, B>(b, b)")
assertEquals(false, test<A, B>(b, a), "test<A, B>(b, a)")
return "OK"
}
@@ -0,0 +1,39 @@
package foo
// CHECK_CALLED: doFilter
// CHECK_NOT_CALLED: filterIsInstance
data class A(val x: Int)
data class B(val x: Int)
// filter from stdlib is not used, because it's important,
// that filter function is not inline. When lambda is
// not inlined and captures some local variable,
// the test crashes on runtime (it's expected behaviour).
fun <T> Array<T>.doFilter(fn: (T)->Boolean): List<T> {
val filtered = arrayListOf<T>()
for (i in 0..lastIndex) {
val element = this[i]
if (fn(element)) {
filtered.add(element)
}
}
return filtered
}
inline fun<reified T> filterIsInstance(arrayOfAnys: Array<Any>): List<T> {
return arrayOfAnys.doFilter { it is T }.map { it as T }
}
fun box(): String {
val src: Array<Any> = arrayOf(A(1), B(2), A(3), B(4))
assertEquals(listOf(A(1), A(3)), filterIsInstance<A>(src))
assertEquals(listOf(B(2), B(4)), filterIsInstance<B>(src))
return "OK"
}