Analysis API: remove dispatch receiver type from XXXSubstitutionOverridesUnwrappingTest

This commit is contained in:
Tianyu Geng
2021-12-06 11:52:12 -08:00
committed by Ilya Kirillov
parent 9153db2ecc
commit b52dc15aa7
29 changed files with 35 additions and 240 deletions
@@ -6,21 +6,25 @@
package org.jetbrains.kotlin.analysis.api.symbols package org.jetbrains.kotlin.analysis.api.symbols
import com.intellij.psi.PsiElement import com.intellij.psi.PsiElement
import org.jetbrains.kotlin.resolve.deprecation.DeprecationInfo
import org.jetbrains.kotlin.analysis.api.KtAnalysisSession import org.jetbrains.kotlin.analysis.api.KtAnalysisSession
import org.jetbrains.kotlin.analysis.api.KtConstantInitializerValue import org.jetbrains.kotlin.analysis.api.KtConstantInitializerValue
import org.jetbrains.kotlin.analysis.api.KtInitializerValue import org.jetbrains.kotlin.analysis.api.KtInitializerValue
import org.jetbrains.kotlin.analysis.api.KtNonConstantInitializerValue import org.jetbrains.kotlin.analysis.api.KtNonConstantInitializerValue
import org.jetbrains.kotlin.analysis.api.annotations.* import org.jetbrains.kotlin.analysis.api.annotations.*
import org.jetbrains.kotlin.analysis.api.components.KtSymbolInfoProviderMixIn import org.jetbrains.kotlin.analysis.api.components.KtSymbolInfoProviderMixIn
import org.jetbrains.kotlin.analysis.api.symbols.markers.* import org.jetbrains.kotlin.analysis.api.symbols.markers.KtNamedSymbol
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtPossiblyNamedSymbol
import org.jetbrains.kotlin.analysis.api.types.KtClassErrorType import org.jetbrains.kotlin.analysis.api.types.KtClassErrorType
import org.jetbrains.kotlin.analysis.api.types.KtType import org.jetbrains.kotlin.analysis.api.types.KtType
import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
import org.jetbrains.kotlin.analysis.utils.printer.prettyPrint import org.jetbrains.kotlin.analysis.utils.printer.prettyPrint
import org.jetbrains.kotlin.descriptors.Visibility import org.jetbrains.kotlin.descriptors.Visibility
import org.jetbrains.kotlin.name.* import org.jetbrains.kotlin.name.ClassId
import org.jetbrains.kotlin.name.FqName
import org.jetbrains.kotlin.name.Name
import org.jetbrains.kotlin.name.SpecialNames
import org.jetbrains.kotlin.renderer.render import org.jetbrains.kotlin.renderer.render
import org.jetbrains.kotlin.resolve.deprecation.DeprecationInfo
import java.lang.reflect.InvocationTargetException import java.lang.reflect.InvocationTargetException
import kotlin.reflect.KClass import kotlin.reflect.KClass
import kotlin.reflect.KProperty import kotlin.reflect.KProperty
@@ -63,14 +67,8 @@ public object DebugSymbolRenderer {
renderProperty(KtNamedSymbol::name, symbol) renderProperty(KtNamedSymbol::name, symbol)
} }
renderProperty(KtCallableSymbol::origin, symbol) renderProperty(KtCallableSymbol::origin, symbol)
@Suppress("DEPRECATION")
(symbol as? KtCallableSymbol)?.getDispatchReceiverType()?.let { dispatchType ->
appendLine().append("getDispatchReceiver()").append(": ")
renderType(dispatchType)
}
} }
}.toString() }
private fun PrettyPrinter.renderProperty(property: KProperty<*>, vararg args: Any) { private fun PrettyPrinter.renderProperty(property: KProperty<*>, vararg args: Any) {
try { try {
@@ -2,40 +2,33 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/Base.noGeneric callableIdIfNonLocal: test/Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric
name: withOuterGeneric name: withOuterGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<test/Foo>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/Base.withOwnGeneric callableIdIfNonLocal: test/Base.withOwnGeneric
name: withOwnGeneric name: withOwnGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric
name: withOuterAndOwnGeneric name: withOuterAndOwnGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<test/Foo>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,44 +2,37 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/Base.noGeneric callableIdIfNonLocal: test/Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric
name: withOuterGeneric name: withOuterGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithGenericBase
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/Base.withOwnGeneric callableIdIfNonLocal: test/Base.withOwnGeneric
name: withOwnGeneric name: withOwnGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric
name: withOuterAndOwnGeneric name: withOuterAndOwnGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithGenericBase
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,40 +2,33 @@ KtKotlinPropertySymbol:
callableIdIfNonLocal: test/Base.noGeneric callableIdIfNonLocal: test/Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/Base<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric
name: withOuterGeneric name: withOuterGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<test/Foo>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/Base.withOwnGeneric callableIdIfNonLocal: test/Base.withOwnGeneric
name: withOwnGeneric name: withOwnGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/Base<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric
name: withOuterAndOwnGeneric name: withOuterAndOwnGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<test/Foo>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,44 +2,37 @@ KtKotlinPropertySymbol:
callableIdIfNonLocal: test/Base.noGeneric callableIdIfNonLocal: test/Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterGeneric
name: withOuterGeneric name: withOuterGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithGenericBase
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/Base.withOwnGeneric callableIdIfNonLocal: test/Base.withOwnGeneric
name: withOwnGeneric name: withOwnGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric callableIdIfNonLocal: test/ClassWithGenericBase.withOuterAndOwnGeneric
name: withOuterAndOwnGeneric name: withOuterAndOwnGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithGenericBase
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,46 +2,38 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/InterfaceWithFun.noGenerics_InterfaceWithFun callableIdIfNonLocal: test/InterfaceWithFun.noGenerics_InterfaceWithFun
name: noGenerics_InterfaceWithFun name: noGenerics_InterfaceWithFun
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/InterfaceWithFun<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGeneric_InterfaceWithFun callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGeneric_InterfaceWithFun
name: withOuterGeneric_InterfaceWithFun name: withOuterGeneric_InterfaceWithFun
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithFun<test/SomeClass2>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/InterfaceWithFunBase.noGenerics_InterfaceWithFunBase callableIdIfNonLocal: test/InterfaceWithFunBase.noGenerics_InterfaceWithFunBase
name: noGenerics_InterfaceWithFunBase name: noGenerics_InterfaceWithFunBase
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/InterfaceWithFunBase<T1, T2>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/InterfaceWithFun.withOuterGenericT1_InterfaceWithFunBase callableIdIfNonLocal: test/InterfaceWithFun.withOuterGenericT1_InterfaceWithFunBase
name: withOuterGenericT1_InterfaceWithFunBase name: withOuterGenericT1_InterfaceWithFunBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithFunBase<test/SomeClass1, T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGenericT2_InterfaceWithFunBase callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGenericT2_InterfaceWithFunBase
name: withOuterGenericT2_InterfaceWithFunBase name: withOuterGenericT2_InterfaceWithFunBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithFunBase<test/SomeClass1, test/SomeClass2>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,50 +2,42 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/InterfaceWithFun.noGenerics_InterfaceWithFun callableIdIfNonLocal: test/InterfaceWithFun.noGenerics_InterfaceWithFun
name: noGenerics_InterfaceWithFun name: noGenerics_InterfaceWithFun
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithFun<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGeneric_InterfaceWithFun callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGeneric_InterfaceWithFun
name: withOuterGeneric_InterfaceWithFun name: withOuterGeneric_InterfaceWithFun
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithInterfaceWithFun
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/InterfaceWithFunBase.noGenerics_InterfaceWithFunBase callableIdIfNonLocal: test/InterfaceWithFunBase.noGenerics_InterfaceWithFunBase
name: noGenerics_InterfaceWithFunBase name: noGenerics_InterfaceWithFunBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithFunBase<T1, T2>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/InterfaceWithFun.withOuterGenericT1_InterfaceWithFunBase callableIdIfNonLocal: test/InterfaceWithFun.withOuterGenericT1_InterfaceWithFunBase
name: withOuterGenericT1_InterfaceWithFunBase name: withOuterGenericT1_InterfaceWithFunBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithFun<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGenericT2_InterfaceWithFunBase callableIdIfNonLocal: test/ClassWithInterfaceWithFun.withOuterGenericT2_InterfaceWithFunBase
name: withOuterGenericT2_InterfaceWithFunBase name: withOuterGenericT2_InterfaceWithFunBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithInterfaceWithFun
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,76 +2,63 @@ KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.noGenerics_InterfaceWithVal callableIdIfNonLocal: test/InterfaceWithVal.noGenerics_InterfaceWithVal
name: noGenerics_InterfaceWithVal name: noGenerics_InterfaceWithVal
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/InterfaceWithVal<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGeneric_InterfaceWithVal callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGeneric_InterfaceWithVal
name: withOuterGeneric_InterfaceWithVal name: withOuterGeneric_InterfaceWithVal
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithVal<test/SomeClass2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.withOwnGeneric_InterfaceWithVal callableIdIfNonLocal: test/InterfaceWithVal.withOwnGeneric_InterfaceWithVal
name: withOwnGeneric_InterfaceWithVal name: withOwnGeneric_InterfaceWithVal
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/InterfaceWithVal<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGeneric_InterfaceWithVal callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGeneric_InterfaceWithVal
name: withOwnAndOuterGeneric_InterfaceWithVal name: withOwnAndOuterGeneric_InterfaceWithVal
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithVal<test/SomeClass2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithValBase.noGenerics_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithValBase.noGenerics_InterfaceWithValBase
name: noGenerics_InterfaceWithValBase name: noGenerics_InterfaceWithValBase
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/InterfaceWithValBase<T1, T2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.withOuterGenericT1_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithVal.withOuterGenericT1_InterfaceWithValBase
name: withOuterGenericT1_InterfaceWithValBase name: withOuterGenericT1_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithValBase<test/SomeClass1, T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGenericT2_InterfaceWithValBase callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGenericT2_InterfaceWithValBase
name: withOuterGenericT2_InterfaceWithValBase name: withOuterGenericT2_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithValBase<test/SomeClass1, test/SomeClass2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithValBase.withOwnGeneric_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithValBase.withOwnGeneric_InterfaceWithValBase
name: withOwnGeneric_InterfaceWithValBase name: withOwnGeneric_InterfaceWithValBase
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/InterfaceWithValBase<T1, T2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.withOwnAndOuterGenericT1_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithVal.withOwnAndOuterGenericT1_InterfaceWithValBase
name: withOwnAndOuterGenericT1_InterfaceWithValBase name: withOwnAndOuterGenericT1_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithValBase<test/SomeClass1, T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGenericT2_InterfaceWithValBase callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGenericT2_InterfaceWithValBase
name: withOwnAndOuterGenericT2_InterfaceWithValBase name: withOwnAndOuterGenericT2_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithValBase<test/SomeClass1, test/SomeClass2>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,80 +2,67 @@ KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.noGenerics_InterfaceWithVal callableIdIfNonLocal: test/InterfaceWithVal.noGenerics_InterfaceWithVal
name: noGenerics_InterfaceWithVal name: noGenerics_InterfaceWithVal
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithVal<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGeneric_InterfaceWithVal callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGeneric_InterfaceWithVal
name: withOuterGeneric_InterfaceWithVal name: withOuterGeneric_InterfaceWithVal
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithInterfaceWithVal
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.withOwnGeneric_InterfaceWithVal callableIdIfNonLocal: test/InterfaceWithVal.withOwnGeneric_InterfaceWithVal
name: withOwnGeneric_InterfaceWithVal name: withOwnGeneric_InterfaceWithVal
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithVal<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGeneric_InterfaceWithVal callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGeneric_InterfaceWithVal
name: withOwnAndOuterGeneric_InterfaceWithVal name: withOwnAndOuterGeneric_InterfaceWithVal
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithInterfaceWithVal
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithValBase.noGenerics_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithValBase.noGenerics_InterfaceWithValBase
name: noGenerics_InterfaceWithValBase name: noGenerics_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithValBase<T1, T2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.withOuterGenericT1_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithVal.withOuterGenericT1_InterfaceWithValBase
name: withOuterGenericT1_InterfaceWithValBase name: withOuterGenericT1_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithVal<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGenericT2_InterfaceWithValBase callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOuterGenericT2_InterfaceWithValBase
name: withOuterGenericT2_InterfaceWithValBase name: withOuterGenericT2_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithInterfaceWithVal
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithValBase.withOwnGeneric_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithValBase.withOwnGeneric_InterfaceWithValBase
name: withOwnGeneric_InterfaceWithValBase name: withOwnGeneric_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithValBase<T1, T2>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/InterfaceWithVal.withOwnAndOuterGenericT1_InterfaceWithValBase callableIdIfNonLocal: test/InterfaceWithVal.withOwnAndOuterGenericT1_InterfaceWithValBase
name: withOwnAndOuterGenericT1_InterfaceWithValBase name: withOwnAndOuterGenericT1_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/InterfaceWithVal<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGenericT2_InterfaceWithValBase callableIdIfNonLocal: test/ClassWithInterfaceWithVal.withOwnAndOuterGenericT2_InterfaceWithValBase
name: withOwnAndOuterGenericT2_InterfaceWithValBase name: withOwnAndOuterGenericT2_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/ClassWithInterfaceWithVal
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,28 +2,23 @@ KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: noGenerics name: noGenerics
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/Child<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,32 +2,27 @@ KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: noGenerics name: noGenerics
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Child<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,34 +2,28 @@ KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: noGenerics name: noGenerics
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/Child<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<test/SomeClass, Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: withOuterAndOwn name: withOuterAndOwn
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<test/SomeClass, Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,38 +2,32 @@ KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: noGenerics name: noGenerics
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Child<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Base<T, Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
name: withOuterAndOwn name: withOuterAndOwn
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Child<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,28 +2,23 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.withOuter callableIdIfNonLocal: test/TopLevel.Base.withOuter
name: withOuter name: withOuter
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,33 +2,27 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.withOuter callableIdIfNonLocal: test/TopLevel.Base.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
getDispatchReceiver(): test/TopLevel<Outer>
@@ -2,34 +2,28 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.withOuter callableIdIfNonLocal: test/TopLevel.Base.withOuter
name: withOuter name: withOuter
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Child.withOwnAndOuter callableIdIfNonLocal: test/TopLevel.Child.withOwnAndOuter
name: withOwnAndOuter name: withOwnAndOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base<test/SomeClass>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,39 +2,32 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<T, Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.withOuter callableIdIfNonLocal: test/TopLevel.Base.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<T, Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Child.withOwnAndOuter callableIdIfNonLocal: test/TopLevel.Child.withOwnAndOuter
name: withOwnAndOuter name: withOwnAndOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Child<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
getDispatchReceiver(): test/TopLevel<Outer>
@@ -2,28 +2,23 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel<test/SomeClass>.test/TopLevel.Base
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,33 +2,27 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/OtherTopLevel.Child
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
getDispatchReceiver(): test/OtherTopLevel
@@ -2,28 +2,23 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel<T>.test/TopLevel.Base
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,33 +2,27 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/OtherTopLevel.Child<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
getDispatchReceiver(): test/OtherTopLevel<T>
@@ -2,34 +2,28 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/TopLevel<Outer>.test/TopLevel.Base<T>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel<test/SomeClass>.test/TopLevel.Base<test/SomeClass>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOwnAndOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOwnAndOuter
name: withOwnAndOuter name: withOwnAndOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel<test/SomeClass>.test/TopLevel.Base<test/SomeClass>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,39 +2,32 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/TopLevel.Base.noGeneric callableIdIfNonLocal: test/TopLevel.Base.noGeneric
name: noGeneric name: noGeneric
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/TopLevel.Base<T, Outer>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOuter
name: withOuter name: withOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/OtherTopLevel.Child
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/OtherTopLevel.Child.withOwnAndOuter callableIdIfNonLocal: test/OtherTopLevel.Child.withOwnAndOuter
name: withOwnAndOuter name: withOwnAndOuter
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/OtherTopLevel.Child
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
getDispatchReceiver(): test/OtherTopLevel
@@ -2,94 +2,78 @@ KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.iterator callableIdIfNonLocal: java/util/Collection.iterator
name: iterator name: iterator
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.size callableIdIfNonLocal: java/util/Collection.size
name: size name: size
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.isEmpty callableIdIfNonLocal: java/util/Collection.isEmpty
name: isEmpty name: isEmpty
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.contains callableIdIfNonLocal: java/util/Collection.contains
name: contains name: contains
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.toArray callableIdIfNonLocal: java/util/Collection.toArray
name: toArray name: toArray
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.toArray callableIdIfNonLocal: java/util/Collection.toArray
name: toArray name: toArray
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.add callableIdIfNonLocal: java/util/Collection.add
name: add name: add
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.remove callableIdIfNonLocal: java/util/Collection.remove
name: remove name: remove
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.containsAll callableIdIfNonLocal: java/util/Collection.containsAll
name: containsAll name: containsAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.addAll callableIdIfNonLocal: java/util/Collection.addAll
name: addAll name: addAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.removeAll callableIdIfNonLocal: java/util/Collection.removeAll
name: removeAll name: removeAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.retainAll callableIdIfNonLocal: java/util/Collection.retainAll
name: retainAll name: retainAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.clear callableIdIfNonLocal: java/util/Collection.clear
name: clear name: clear
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
@@ -2,98 +2,82 @@ KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.size callableIdIfNonLocal: java/util/Collection.size
name: size name: size
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.isEmpty callableIdIfNonLocal: java/util/Collection.isEmpty
name: isEmpty name: isEmpty
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.contains callableIdIfNonLocal: java/util/Collection.contains
name: contains name: contains
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/MyList.iterator callableIdIfNonLocal: test/MyList.iterator
name: iterator name: iterator
origin: JAVA origin: JAVA
getDispatchReceiver(): test/MyList
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.toArray callableIdIfNonLocal: java/util/Collection.toArray
name: toArray name: toArray
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.toArray callableIdIfNonLocal: java/util/Collection.toArray
name: toArray name: toArray
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/MyList.add callableIdIfNonLocal: test/MyList.add
name: add name: add
origin: JAVA origin: JAVA
getDispatchReceiver(): test/MyList
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.remove callableIdIfNonLocal: java/util/Collection.remove
name: remove name: remove
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.containsAll callableIdIfNonLocal: java/util/Collection.containsAll
name: containsAll name: containsAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: test/MyList.addAll callableIdIfNonLocal: test/MyList.addAll
name: addAll name: addAll
origin: JAVA origin: JAVA
getDispatchReceiver(): test/MyList
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.removeAll callableIdIfNonLocal: java/util/Collection.removeAll
name: removeAll name: removeAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.retainAll callableIdIfNonLocal: java/util/Collection.retainAll
name: retainAll name: retainAll
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: java/util/Collection.clear callableIdIfNonLocal: java/util/Collection.clear
name: clear name: clear
origin: JAVA origin: JAVA
getDispatchReceiver(): java/util/Collection<E>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED
@@ -2,28 +2,23 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/MyClass.funWithOuterAndOwnGenericsAndBounds callableIdIfNonLocal: test/MyClass.funWithOuterAndOwnGenericsAndBounds
name: funWithOuterAndOwnGenericsAndBounds name: funWithOuterAndOwnGenericsAndBounds
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/MyInterface<test/Foo>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/MyClass.propWithOuterAndOwnGenericsAndBounds callableIdIfNonLocal: test/MyClass.propWithOuterAndOwnGenericsAndBounds
name: propWithOuterAndOwnGenericsAndBounds name: propWithOuterAndOwnGenericsAndBounds
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/MyInterface<test/Foo>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,31 +2,26 @@ KtFunctionSymbol:
callableIdIfNonLocal: test/MyClass.funWithOuterAndOwnGenericsAndBounds callableIdIfNonLocal: test/MyClass.funWithOuterAndOwnGenericsAndBounds
name: funWithOuterAndOwnGenericsAndBounds name: funWithOuterAndOwnGenericsAndBounds
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/MyClass
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/MyClass.propWithOuterAndOwnGenericsAndBounds callableIdIfNonLocal: test/MyClass.propWithOuterAndOwnGenericsAndBounds
name: propWithOuterAndOwnGenericsAndBounds name: propWithOuterAndOwnGenericsAndBounds
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/MyClass
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
@@ -2,28 +2,23 @@ KtKotlinPropertySymbol:
callableIdIfNonLocal: test/MyInterface.withOwnGeneric_InterfaceWithValBase callableIdIfNonLocal: test/MyInterface.withOwnGeneric_InterfaceWithValBase
name: withOwnGeneric_InterfaceWithValBase name: withOwnGeneric_InterfaceWithValBase
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): test/MyInterface<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/Inheritor.withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase callableIdIfNonLocal: test/Inheritor.withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase
name: withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase name: withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/MyInterface<test/ClassB>
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
@@ -2,32 +2,27 @@ KtKotlinPropertySymbol:
callableIdIfNonLocal: test/MyInterface.withOwnGeneric_InterfaceWithValBase callableIdIfNonLocal: test/MyInterface.withOwnGeneric_InterfaceWithValBase
name: withOwnGeneric_InterfaceWithValBase name: withOwnGeneric_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/MyInterface<T>
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
callableIdIfNonLocal: test/Inheritor.withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase callableIdIfNonLocal: test/Inheritor.withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase
name: withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase name: withOwnAndOuterGenericAsTypeBound_InterfaceWithValBase
origin: SOURCE origin: SOURCE
getDispatchReceiver(): test/Inheritor
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.equals callableIdIfNonLocal: kotlin/Any.equals
name: equals name: equals
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.hashCode callableIdIfNonLocal: kotlin/Any.hashCode
name: hashCode name: hashCode
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtFunctionSymbol: KtFunctionSymbol:
callableIdIfNonLocal: kotlin/Any.toString callableIdIfNonLocal: kotlin/Any.toString
name: toString name: toString
origin: LIBRARY origin: LIBRARY
getDispatchReceiver(): kotlin/Any
KtConstructorSymbol: KtConstructorSymbol:
callableIdIfNonLocal: null callableIdIfNonLocal: null
origin: SOURCE_MEMBER_GENERATED origin: SOURCE_MEMBER_GENERATED