[FIR generator] Remove unused class ImplementationWithArg

This commit is contained in:
Sergej Jaskiewicz
2023-10-20 15:10:18 +02:00
committed by Space Team
parent 7b7bcb8ffa
commit 325b152efa
4 changed files with 4 additions and 51 deletions
@@ -18,16 +18,13 @@ abstract class InterfaceAndAbstractClassConfigurator {
get() = element.allParents.map(::NodeImpl)
override val origin: NodeImpl
get() = if (element.origin == element) this else NodeImpl(element.origin)
get() = this
override fun equals(other: Any?): Boolean = other is NodeImpl && element == other.element
override fun hashCode(): Int = element.hashCode()
}
protected open val ImplementationKindOwner.origin: ImplementationKindOwner
get() = this
/**
* The list of elements of the tree to infer their [ImplementationKind].
*/