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

org.jetbrains.dataframe.ksp.GetQualifiedNameOrThrow.kt Maven / Gradle / Ivy

There is a newer version: 1727
Show newest version
package org.jetbrains.dataframe.ksp

import com.google.devtools.ksp.symbol.KSDeclaration
import org.jetbrains.kotlinx.dataframe.impl.codeGen.quoteIfNeeded

fun KSDeclaration.getQualifiedNameOrThrow(): String =
    qualifiedName
        ?.let {
            buildString {
                val qualifier = it.getQualifier()
                if (qualifier.isNotEmpty()) {
                    for (it in qualifier.split('.')) {
                        append(it.quoteIfNeeded() + '.')
                    }
                }

                append(it.getShortName().quoteIfNeeded())
            }
        }
        ?: error("@DataSchema declaration ${simpleName.asString()} at $location must have qualified name")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy