b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
15 lines
244 B
Kotlin
Vendored
15 lines
244 B
Kotlin
Vendored
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)
|
|
}
|