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

com.google.devtools.ksp.symbol.impl.java.KSNodeJavaImpl.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-RC-1.0.27
Show newest version
package com.google.devtools.ksp.symbol.impl.java

import com.google.devtools.ksp.symbol.KSNode
import com.google.devtools.ksp.symbol.Location
import com.google.devtools.ksp.symbol.impl.toLocation
import com.intellij.psi.PsiElement

abstract class KSNodeJavaImpl(private val psi: PsiElement, override val parent: KSNode?) : KSNode {
    override val location: Location by lazy {
        psi.toLocation()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy