aboutsummaryrefslogtreecommitdiff
path: root/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/binary/KSNodeDescriptorImpl.kt
blob: 0c82f750fd9744b44bcde32c8a8e40be4d360df3 (plain)
1
2
3
4
5
6
7
8
9
package com.google.devtools.ksp.symbol.impl.binary

import com.google.devtools.ksp.symbol.KSNode
import com.google.devtools.ksp.symbol.Location
import com.google.devtools.ksp.symbol.NonExistLocation

abstract class KSNodeDescriptorImpl(override val parent: KSNode?) : KSNode {
    override val location: Location = NonExistLocation
}