[Test] Add handler for comparing pretty kt ir dumps

This commit is contained in:
Dmitriy Novozhilov
2021-01-20 11:40:04 +03:00
committed by TeamCityServer
parent 87ffbd8206
commit aba029237d
13 changed files with 171 additions and 64 deletions
@@ -0,0 +1,15 @@
class V8Array {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
fun box(): String {
val array: V8Array = V8Array()
val list: List<String> = toList(array = array) as List<String>
return list.get(index = 0)
}