godot.annotation.processor.ext.ksDeclarationExt.kt Maven / Gradle / Ivy
package godot.annotation.processor.ext
import com.google.devtools.ksp.symbol.KSClassDeclaration
fun KSClassDeclaration.hasCompilationErrors(): Boolean = superTypes
.toList()
.any { superTypeDeclaration -> superTypeDeclaration.resolve().isError }
|| this.asStarProjectedType().isError
|| this.getAllProperties().any { property -> property.type.resolve().isError }
|| this.getAllFunctions().any { function ->
function.returnType?.resolve()?.isError == true || function.parameters.any { param -> param.type.resolve().isError }
}