mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
1. Search the top-level function or property (only they can produce blocks that won't affect other declarations)
2. Check if current position is hidden by this declaration
O^2 behaviour is removed
11 lines
122 B
Kotlin
Vendored
11 lines
122 B
Kotlin
Vendored
// FALSE
|
|
fun test() {
|
|
val some = if () {
|
|
fun other() {
|
|
<caret>
|
|
}
|
|
}
|
|
else {
|
|
|
|
}
|
|
} |