File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
ktorm-ksp-compiler/src/main/kotlin/org/ktorm/ksp/compiler/util Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import com.google.devtools.ksp.KspExperimental
2222import com.google.devtools.ksp.isAnnotationPresent
2323import com.google.devtools.ksp.symbol.*
2424import com.google.devtools.ksp.visitor.KSValidateVisitor
25- import kotlin.reflect.jvm.jvmName
2625
2726/* *
2827 * Return the resolved [KSType] of this property.
@@ -54,7 +53,7 @@ internal fun KSType.isInline(): Boolean {
5453 * Check if this class is a subclass of [T].
5554 */
5655internal inline fun <reified T : Any > KSClassDeclaration.isSubclassOf (): Boolean {
57- return findSuperTypeReference(T ::class .jvmName ) != null
56+ return findSuperTypeReference(T ::class .qualifiedName !! ) != null
5857}
5958
6059/* *
You can’t perform that action at this time.
0 commit comments