e7e80be34a
Before this commit we considered !isOverride as a sign that function / field / accessor has no overridden symbols. However, it's false for deserialized, because isOverride is always false there. This commit fixes 68 BB tests but breaks 25 BB tests (not yet muted)
23 lines
547 B
Kotlin
Vendored
23 lines
547 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
val String.name get() = this
|
|
|
|
fun List<String>.normalize(): List<String> {
|
|
val list = ArrayList<String>()
|
|
for (str in this) {
|
|
when (str.name) {
|
|
"." -> {}
|
|
".." -> if (!list.isEmpty() && list.last().name != "..") list.removeAt(list.size - 1) else list.add(str)
|
|
else -> list.add(str)
|
|
}
|
|
}
|
|
return list
|
|
}
|
|
|
|
fun box(): String {
|
|
val xs = listOf("a", "b", ".", "..").normalize()
|
|
if (xs != listOf("a")) return "Fail: $xs"
|
|
|
|
return "OK"
|
|
} |