mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-10-03 22:29:30 +00:00
9 lines
252 B
Kotlin
9 lines
252 B
Kotlin
package dev.inmo.micro_ksp.generator
|
|
|
|
import com.google.devtools.ksp.symbol.KSClassDeclaration
|
|
|
|
val KSClassDeclaration.companion
|
|
get() = declarations.firstNotNullOfOrNull {
|
|
(it as? KSClassDeclaration)?.takeIf { it.isCompanionObject }
|
|
}
|