15b1e429d7
ensure fir annotations are included in FirDanglingModifierList and resolved, dedicated DanglingTopLevelModifierListStructureElement exists for top level lists only, class level lists are processed by containing structure element
17 lines
512 B
Kotlin
17 lines
512 B
Kotlin
class Foo {/* NonReanalyzableDeclarationStructureElement */
|
|
@Suppress("") @MustBeDocumented
|
|
}
|
|
class Bar {/* NonReanalyzableDeclarationStructureElement */
|
|
@Suppress("") @MustBeDocumented
|
|
}
|
|
class Outer {/* NonReanalyzableDeclarationStructureElement */
|
|
class Inner {/* NonReanalyzableDeclarationStructureElement */
|
|
@Suppress("") @MustBeDocumented
|
|
}
|
|
fun foo() {/* ReanalyzableFunctionStructureElement */
|
|
class Local {
|
|
@Suppress("") @MustBeDocumented
|
|
}
|
|
}
|
|
}
|