![JAR search and dependency download from the Maven repository](/logo.png)
com.flyjingfish.module_communication_ksp.Expansions.kt Maven / Gradle / Ivy
package com.flyjingfish.module_communication_ksp
import com.google.devtools.ksp.getAllSuperTypes
import com.google.devtools.ksp.symbol.KSClassDeclaration
fun KSClassDeclaration.isSubtype(superType :String):Boolean{
getAllSuperTypes().toList().forEach {
val className = "${it.declaration.packageName.asString()}.${it.declaration}"
if (className == superType){
return true
}
}
return false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy