org.jetbrains.kotlin.ir.symbols.impl.IrPublicSymbolBase.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.ir.symbols.impl
import org.jetbrains.kotlin.descriptors.*
import org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI
import org.jetbrains.kotlin.ir.declarations.*
import org.jetbrains.kotlin.ir.descriptors.toIrBasedDescriptor
import org.jetbrains.kotlin.ir.symbols.*
import org.jetbrains.kotlin.ir.util.IdSignature
import org.jetbrains.kotlin.ir.util.render
/**
* The base class for all public (wrt linkage) symbols.
*
* Its [signature] is never `null`.
*
* TODO: Merge with [IrSymbolBase] ([KT-44721](https://youtrack.jetbrains.com/issue/KT-44721))
*/
abstract class IrPublicSymbolBase(
override val signature: IdSignature,
private val _descriptor: Descriptor?
) : IrSymbol {
@ObsoleteDescriptorBasedAPI
@Suppress("UNCHECKED_CAST")
override val descriptor: Descriptor
get() = _descriptor ?: (owner as IrDeclaration).toIrBasedDescriptor() as Descriptor
@ObsoleteDescriptorBasedAPI
override val hasDescriptor: Boolean
get() = _descriptor != null
override fun toString(): String {
if (isBound) return owner.render()
return "Unbound public symbol ${this::class.java.simpleName}: $signature"
}
}
abstract class IrBindablePublicSymbolBase(
sig: IdSignature,
descriptor: Descriptor?,
) : IrPublicSymbolBase(sig, descriptor), IrBindableSymbol
where Descriptor : DeclarationDescriptor,
Owner : IrSymbolOwner {
init {
assert(descriptor == null || isOriginalDescriptor(descriptor)) {
"Substituted descriptor $descriptor for ${descriptor!!.original}"
}
// assert(sig.isPubliclyVisible)
}
private fun isOriginalDescriptor(descriptor: DeclarationDescriptor): Boolean =
// TODO fix declaring/referencing value parameters: compute proper original descriptor
descriptor is ValueParameterDescriptor && isOriginalDescriptor(descriptor.containingDeclaration) ||
descriptor == descriptor.original
private var _owner: Owner? = null
override val owner: Owner
get() = _owner ?: throw IllegalStateException("Symbol for $signature is unbound")
override fun bind(owner: Owner) {
if (_owner == null) {
_owner = owner
} else {
throw IllegalStateException("${javaClass.simpleName} for $signature is already bound: ${_owner?.render()}")
}
}
override val isBound: Boolean
get() = _owner != null
override var privateSignature: IdSignature? = null
}
class IrClassPublicSymbolImpl(sig: IdSignature, descriptor: ClassDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrClassSymbol
class IrEnumEntryPublicSymbolImpl(sig: IdSignature, descriptor: ClassDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrEnumEntrySymbol
class IrSimpleFunctionPublicSymbolImpl(sig: IdSignature, descriptor: FunctionDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrSimpleFunctionSymbol
class IrConstructorPublicSymbolImpl(sig: IdSignature, descriptor: ClassConstructorDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrConstructorSymbol
class IrPropertyPublicSymbolImpl(sig: IdSignature, descriptor: PropertyDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrPropertySymbol
class IrTypeAliasPublicSymbolImpl(sig: IdSignature, descriptor: TypeAliasDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrTypeAliasSymbol
class IrFieldPublicSymbolImpl(sig: IdSignature, descriptor: PropertyDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrFieldSymbol
class IrTypeParameterPublicSymbolImpl(sig: IdSignature, descriptor: TypeParameterDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor),
IrTypeParameterSymbol
class IrScriptPublicSymbolImpl(sig: IdSignature, descriptor: ScriptDescriptor? = null) :
IrBindablePublicSymbolBase(sig, descriptor), IrScriptSymbol