8832865e9a
We can avoid complex reanalyze-base logic and just directly drop outdated data from FileStructureCache ^KT-60611
12 lines
244 B
Kotlin
12 lines
244 B
Kotlin
class A {/* ClassDeclarationStructureElement */
|
|
val a = myRun {
|
|
class X()
|
|
|
|
val y = 10
|
|
}/* DeclarationStructureElement */
|
|
}
|
|
|
|
inline fun <R> myRun(block: () -> R): R {/* DeclarationStructureElement */
|
|
return block()
|
|
}
|