a4c7619c89
Without this commit, JVM name mapping logic in BE does not work for FIR, because FIR cannot use old BuiltInsPackageFragmentImpl descriptor. In this commit we add our own implementation thus fixing a pack of FIR black box tests.
23 lines
524 B
Kotlin
Vendored
23 lines
524 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
fun <T> ArrayList<T>.findAll(predicate: (T) -> Boolean): ArrayList<T> {
|
|
val result = ArrayList<T>()
|
|
for(t in this) {
|
|
if (predicate(t)) result.add(t)
|
|
}
|
|
return result
|
|
}
|
|
|
|
|
|
fun box(): String {
|
|
val list: ArrayList<String> = ArrayList<String>()
|
|
list.add("Prague")
|
|
list.add("St.Petersburg")
|
|
list.add("Moscow")
|
|
list.add("Munich")
|
|
|
|
val m: ArrayList<String> = list.findAll<String>({ name: String -> name.startsWith("M")})
|
|
return if (m.size == 2) "OK" else "fail"
|
|
}
|