
com.faendir.kotlin.autodsl.ksp.KspLogger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of processor Show documentation
Show all versions of processor Show documentation
Auto-generates DSL for your Kotlin projects using annotations.
package com.faendir.kotlin.autodsl.ksp
import com.faendir.kotlin.autodsl.Logger
import com.google.devtools.ksp.processing.KSPLogger
import com.google.devtools.ksp.symbol.KSClassDeclaration
class KspLogger(private val delegate: KSPLogger) : Logger {
override fun error(message: String, source: KSClassDeclaration?) = delegate.error(message, source)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy