All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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