AA: avoid using compiler impl detail as API return type
This commit is contained in:
committed by
Space Team
parent
f5d2ce3022
commit
ea17bbeddc
+5
-4
@@ -25,6 +25,7 @@ import org.jetbrains.kotlin.descriptors.ValueParameterDescriptor
|
||||
import org.jetbrains.kotlin.fileClasses.javaFileFacadeFqName
|
||||
import org.jetbrains.kotlin.load.java.lazy.descriptors.LazyJavaPackageFragment
|
||||
import org.jetbrains.kotlin.load.kotlin.*
|
||||
import org.jetbrains.kotlin.name.FqName
|
||||
import org.jetbrains.kotlin.platform.TargetPlatform
|
||||
import org.jetbrains.kotlin.platform.isCommon
|
||||
import org.jetbrains.kotlin.platform.jvm.isJvm
|
||||
@@ -92,7 +93,7 @@ internal class KtFe10SymbolContainingDeclarationProvider(
|
||||
}
|
||||
}
|
||||
|
||||
override fun getContainingJvmClassName(symbol: KtCallableSymbol): JvmClassName? {
|
||||
override fun getContainingJvmClassName(symbol: KtCallableSymbol): String? {
|
||||
val platform = getContainingModule(symbol).platform
|
||||
if (!platform.isCommon() && !platform.isJvm()) return null
|
||||
|
||||
@@ -103,18 +104,18 @@ internal class KtFe10SymbolContainingDeclarationProvider(
|
||||
is FacadeClassSource -> containerSource.facadeClassName ?: containerSource.className
|
||||
is KotlinJvmBinarySourceElement -> JvmClassName.byClassId(containerSource.binaryClass.classId)
|
||||
else -> null
|
||||
}
|
||||
}?.fqNameForClassNameWithoutDollars?.asString()
|
||||
}
|
||||
else -> {
|
||||
return if (containingSymbolOrSelf.symbolKind == KtSymbolKind.TOP_LEVEL) {
|
||||
descriptor?.let(DescriptorToSourceUtils::getContainingFile)
|
||||
?.takeUnless { it.isScript() }
|
||||
?.let { JvmClassName.byFqNameWithoutInnerClasses(it.javaFileFacadeFqName) }
|
||||
?.javaFileFacadeFqName?.asString()
|
||||
} else {
|
||||
val classId = (containingSymbolOrSelf as? KtConstructorSymbol)?.containingClassIdIfNonLocal
|
||||
?: (containingSymbolOrSelf as? KtCallableSymbol)?.callableIdIfNonLocal?.classId
|
||||
classId?.takeUnless { it.shortClassName.isSpecial }
|
||||
?.let { JvmClassName.byClassId(it) }
|
||||
?.asFqNameString()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+7
-5
@@ -33,11 +33,11 @@ import org.jetbrains.kotlin.fir.diagnostics.ConeDestructuringDeclarationsOnTopLe
|
||||
import org.jetbrains.kotlin.fir.psi
|
||||
import org.jetbrains.kotlin.fir.resolve.providers.firProvider
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirErrorPropertySymbol
|
||||
import org.jetbrains.kotlin.name.FqName
|
||||
import org.jetbrains.kotlin.platform.isCommon
|
||||
import org.jetbrains.kotlin.platform.jvm.isJvm
|
||||
import org.jetbrains.kotlin.psi
|
||||
import org.jetbrains.kotlin.psi.*
|
||||
import org.jetbrains.kotlin.resolve.jvm.JvmClassName
|
||||
import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
|
||||
|
||||
internal class KtFirSymbolContainingDeclarationProvider(
|
||||
@@ -121,7 +121,7 @@ internal class KtFirSymbolContainingDeclarationProvider(
|
||||
return firSymbolBuilder.buildFileSymbol(firFileSymbol)
|
||||
}
|
||||
|
||||
override fun getContainingJvmClassName(symbol: KtCallableSymbol): JvmClassName? {
|
||||
override fun getContainingJvmClassName(symbol: KtCallableSymbol): String? {
|
||||
val platform = getContainingModule(symbol).platform
|
||||
if (!platform.isCommon() && !platform.isJvm()) return null
|
||||
|
||||
@@ -137,17 +137,19 @@ internal class KtFirSymbolContainingDeclarationProvider(
|
||||
}
|
||||
val firSymbol = containingSymbolOrSelf.firSymbol
|
||||
|
||||
firSymbol.jvmClassNameIfDeserialized()?.let { return it }
|
||||
firSymbol.jvmClassNameIfDeserialized()?.let {
|
||||
return it.fqNameForClassNameWithoutDollars.asString()
|
||||
}
|
||||
|
||||
return if (containingSymbolOrSelf.symbolKind == KtSymbolKind.TOP_LEVEL) {
|
||||
(firSymbol.fir.getContainingFile()?.psi as? KtFile)
|
||||
?.takeUnless { it.isScript() }
|
||||
?.let { JvmClassName.byFqNameWithoutInnerClasses(it.javaFileFacadeFqName) }
|
||||
?.javaFileFacadeFqName?.asString()
|
||||
} else {
|
||||
val classId = (containingSymbolOrSelf as? KtConstructorSymbol)?.containingClassIdIfNonLocal
|
||||
?: containingSymbolOrSelf.callableIdIfNonLocal?.classId
|
||||
classId?.takeUnless { it.shortClassName.isSpecial }
|
||||
?.let { JvmClassName.byClassId(it) }
|
||||
?.asFqNameString()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+3
-2
@@ -12,6 +12,7 @@ import org.jetbrains.kotlin.analysis.api.symbols.KtSymbol
|
||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
||||
import org.jetbrains.kotlin.fileClasses.javaFileFacadeFqName
|
||||
import org.jetbrains.kotlin.name.FqName
|
||||
import org.jetbrains.kotlin.psi.KtClassOrObject
|
||||
import org.jetbrains.kotlin.psi.KtFile
|
||||
import org.jetbrains.kotlin.resolve.jvm.JvmClassName
|
||||
@@ -44,10 +45,10 @@ internal fun checkContainingJvmClassName(
|
||||
null
|
||||
ktClass != null ->
|
||||
// member
|
||||
ktClass.getClassId()?.let { JvmClassName.byClassId(it) }
|
||||
ktClass.getClassId()?.asFqNameString()
|
||||
else ->
|
||||
// top-level
|
||||
JvmClassName.byFqNameWithoutInnerClasses(ktFile.javaFileFacadeFqName)
|
||||
ktFile.javaFileFacadeFqName.asString()
|
||||
}
|
||||
val actualClassName = symbol.getContainingJvmClassName()
|
||||
testServices.assertions.assertEquals(expectedClassName, actualClassName) {
|
||||
|
||||
+8
-6
@@ -11,14 +11,13 @@ import org.jetbrains.kotlin.analysis.api.symbols.KtDeclarationSymbol
|
||||
import org.jetbrains.kotlin.analysis.api.symbols.KtFileSymbol
|
||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbol
|
||||
import org.jetbrains.kotlin.analysis.project.structure.KtModule
|
||||
import org.jetbrains.kotlin.resolve.jvm.JvmClassName
|
||||
|
||||
public abstract class KtSymbolContainingDeclarationProvider : KtAnalysisSessionComponent() {
|
||||
public abstract fun getContainingDeclaration(symbol: KtSymbol): KtDeclarationSymbol?
|
||||
|
||||
public abstract fun getContainingFileSymbol(symbol: KtSymbol): KtFileSymbol?
|
||||
|
||||
public abstract fun getContainingJvmClassName(symbol: KtCallableSymbol): JvmClassName?
|
||||
public abstract fun getContainingJvmClassName(symbol: KtCallableSymbol): String?
|
||||
|
||||
public abstract fun getContainingModule(symbol: KtSymbol): KtModule
|
||||
}
|
||||
@@ -36,20 +35,23 @@ public interface KtSymbolContainingDeclarationProviderMixIn : KtAnalysisSessionM
|
||||
/**
|
||||
* Returns containing [KtFile] as [KtFileSymbol]
|
||||
*
|
||||
* Caveat: returns null if the given symbol is already [KtFileSymbol], since there is no containing file.
|
||||
* Caveat: returns `null` if the given symbol is already [KtFileSymbol], since there is no containing file.
|
||||
* Similarly, no containing file for libraries and Java, hence `null`.
|
||||
*/
|
||||
public fun KtSymbol.getContainingFileSymbol(): KtFileSymbol? =
|
||||
withValidityAssertion { analysisSession.containingDeclarationProvider.getContainingFileSymbol(this) }
|
||||
|
||||
/**
|
||||
* Returns containing class's [JvmClassName] if any for [KtCallableSymbol]
|
||||
* Returns containing JVM class name for [KtCallableSymbol]
|
||||
*
|
||||
* even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
|
||||
* for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
|
||||
*
|
||||
* Note that this API is applicable for common or JVM modules only.
|
||||
* The returned JVM class name is of fully qualified name format, e.g., foo.bar.Baz.Companion
|
||||
*
|
||||
* Note that this API is applicable for common or JVM modules only, and returns `null` for non-JVM modules.
|
||||
*/
|
||||
public fun KtCallableSymbol.getContainingJvmClassName(): JvmClassName? =
|
||||
public fun KtCallableSymbol.getContainingJvmClassName(): String? =
|
||||
withValidityAssertion { analysisSession.containingDeclarationProvider.getContainingJvmClassName(this) }
|
||||
|
||||
public fun KtSymbol.getContainingModule(): KtModule =
|
||||
|
||||
Vendored
+5
-5
@@ -32,7 +32,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -54,7 +54,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/C.bar
|
||||
@@ -85,7 +85,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -119,7 +119,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -238,6 +238,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+5
-5
@@ -32,7 +32,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/KotlinClass
|
||||
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||
getContainingJvmClassName: test/KotlinClass
|
||||
getContainingJvmClassName: test.KotlinClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -54,7 +54,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||
getContainingJvmClassName: test/KotlinClass
|
||||
getContainingJvmClassName: test.KotlinClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/KotlinClass.bar
|
||||
@@ -85,7 +85,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/KotlinClass
|
||||
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||
getContainingJvmClassName: test/KotlinClass
|
||||
getContainingJvmClassName: test.KotlinClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -119,7 +119,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/KotlinClass
|
||||
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||
getContainingJvmClassName: test/KotlinClass
|
||||
getContainingJvmClassName: test.KotlinClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -238,6 +238,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||
getContainingJvmClassName: test/KotlinClass
|
||||
getContainingJvmClassName: test.KotlinClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
Vendored
+8
-8
@@ -15,7 +15,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -36,7 +36,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -75,7 +75,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -128,13 +128,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -170,7 +170,7 @@ KtKotlinPropertySymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -205,7 +205,7 @@ KtKotlinPropertySymbol:
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -234,6 +234,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+12
-12
@@ -15,7 +15,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -36,7 +36,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -58,7 +58,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -89,7 +89,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -123,7 +123,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -204,7 +204,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -257,13 +257,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -299,7 +299,7 @@ KtKotlinPropertySymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -334,7 +334,7 @@ KtKotlinPropertySymbol:
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -363,6 +363,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+12
-12
@@ -15,7 +15,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -36,7 +36,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -58,7 +58,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -89,7 +89,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -123,7 +123,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -204,7 +204,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -257,13 +257,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -299,7 +299,7 @@ KtKotlinPropertySymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -334,7 +334,7 @@ KtKotlinPropertySymbol:
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -363,6 +363,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
Vendored
+1
-1
@@ -79,6 +79,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||
getContainingJvmClassName: test/B
|
||||
getContainingJvmClassName: test.B
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+2
-2
@@ -37,7 +37,7 @@ KtConstructorSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: JavaClass$InnerClass
|
||||
getContainingJvmClassName: JavaClass.InnerClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -47,6 +47,6 @@ KtConstructorSymbol:
|
||||
ownTypeArguments: []
|
||||
type: JavaClass
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: JavaClass$InnerClass
|
||||
getContainingJvmClassName: JavaClass.InnerClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+5
-5
@@ -32,7 +32,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -54,7 +54,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/C.bar
|
||||
@@ -85,7 +85,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -119,7 +119,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -148,6 +148,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+1
-1
@@ -19,6 +19,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+5
-5
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -123,7 +123,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -148,6 +148,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+5
-5
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -123,7 +123,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -148,6 +148,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+1
-1
@@ -49,6 +49,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||
getContainingJvmClassName: test/B
|
||||
getContainingJvmClassName: test.B
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+2
-2
@@ -37,7 +37,7 @@ KtConstructorSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: JavaClass$InnerClass
|
||||
getContainingJvmClassName: JavaClass.InnerClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -47,6 +47,6 @@ KtConstructorSymbol:
|
||||
ownTypeArguments: []
|
||||
type: JavaClass
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: JavaClass$InnerClass
|
||||
getContainingJvmClassName: JavaClass.InnerClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+117
-117
@@ -50,7 +50,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -60,7 +60,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -116,7 +116,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -126,7 +126,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -182,7 +182,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -192,7 +192,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -248,7 +248,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -258,7 +258,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -314,7 +314,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -324,7 +324,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -380,7 +380,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -390,7 +390,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -446,7 +446,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -456,7 +456,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -494,7 +494,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -550,7 +550,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -560,7 +560,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -616,7 +616,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -626,7 +626,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -682,7 +682,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -692,7 +692,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -748,7 +748,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -758,7 +758,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -814,7 +814,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -824,7 +824,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -880,7 +880,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -890,7 +890,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -946,7 +946,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -956,7 +956,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -994,7 +994,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1035,7 +1035,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1091,7 +1091,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1101,7 +1101,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1157,7 +1157,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1167,7 +1167,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1223,7 +1223,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1233,7 +1233,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1289,7 +1289,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1299,7 +1299,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1355,7 +1355,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1365,7 +1365,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1421,7 +1421,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1431,7 +1431,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1487,7 +1487,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1497,7 +1497,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1553,7 +1553,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1563,7 +1563,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1619,7 +1619,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1629,7 +1629,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1685,7 +1685,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1695,7 +1695,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1751,7 +1751,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1761,7 +1761,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1817,7 +1817,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1827,7 +1827,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1883,7 +1883,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1893,7 +1893,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1946,7 +1946,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1956,7 +1956,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2009,7 +2009,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2019,7 +2019,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2072,7 +2072,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2082,7 +2082,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2135,7 +2135,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2145,7 +2145,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2203,7 +2203,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2213,7 +2213,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2271,7 +2271,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2281,7 +2281,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2339,7 +2339,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2349,7 +2349,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2407,7 +2407,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2417,7 +2417,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2475,7 +2475,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2485,7 +2485,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2543,7 +2543,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2553,7 +2553,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2611,7 +2611,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2621,7 +2621,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2679,7 +2679,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2689,7 +2689,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2747,7 +2747,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2757,7 +2757,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2815,7 +2815,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2825,7 +2825,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2881,7 +2881,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2891,7 +2891,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -2947,7 +2947,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -2957,7 +2957,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3013,7 +3013,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3023,7 +3023,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3079,7 +3079,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3089,7 +3089,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3145,7 +3145,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3155,7 +3155,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3211,7 +3211,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3221,7 +3221,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3277,7 +3277,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3287,7 +3287,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3343,7 +3343,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3353,7 +3353,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3394,7 +3394,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3435,7 +3435,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3476,7 +3476,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3517,7 +3517,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3558,7 +3558,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3599,7 +3599,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3640,7 +3640,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3681,7 +3681,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3722,7 +3722,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3763,7 +3763,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3819,7 +3819,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3829,7 +3829,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3885,7 +3885,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -3895,7 +3895,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Int
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3933,7 +3933,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -3988,6 +3988,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Int
|
||||
getContainingJvmClassName: kotlin.Int
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
Vendored
+47
-47
@@ -46,7 +46,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -60,7 +60,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -113,7 +113,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -136,7 +136,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -150,7 +150,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -203,7 +203,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -231,7 +231,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -245,7 +245,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -302,7 +302,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -316,7 +316,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -358,7 +358,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -404,7 +404,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -461,7 +461,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -475,7 +475,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -527,7 +527,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -541,7 +541,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -598,7 +598,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -612,7 +612,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -664,7 +664,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -678,7 +678,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -735,7 +735,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -749,7 +749,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -801,7 +801,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -824,7 +824,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -838,7 +838,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -895,7 +895,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -919,7 +919,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -933,7 +933,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -955,7 +955,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/collections/List.size
|
||||
@@ -990,7 +990,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -1028,7 +1028,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -1074,7 +1074,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1126,7 +1126,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1140,7 +1140,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1186,7 +1186,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1243,7 +1243,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1257,7 +1257,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1309,7 +1309,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1323,7 +1323,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1375,7 +1375,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1389,7 +1389,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1441,7 +1441,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1455,7 +1455,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1508,7 +1508,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1518,7 +1518,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1556,7 +1556,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1594,6 +1594,6 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
+47
-47
@@ -46,7 +46,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -60,7 +60,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -113,7 +113,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -136,7 +136,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -150,7 +150,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -203,7 +203,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -231,7 +231,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -245,7 +245,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -302,7 +302,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -316,7 +316,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -358,7 +358,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -404,7 +404,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -461,7 +461,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -475,7 +475,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -527,7 +527,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -541,7 +541,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -598,7 +598,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -612,7 +612,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -664,7 +664,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -678,7 +678,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -735,7 +735,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -749,7 +749,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -801,7 +801,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -824,7 +824,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -838,7 +838,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -895,7 +895,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -919,7 +919,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -933,7 +933,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -955,7 +955,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/collections/List.size
|
||||
@@ -996,7 +996,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -1042,7 +1042,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1094,7 +1094,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1108,7 +1108,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1154,7 +1154,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1211,7 +1211,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1225,7 +1225,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1277,7 +1277,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1291,7 +1291,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1343,7 +1343,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1357,7 +1357,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1409,7 +1409,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1423,7 +1423,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/MutableList<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/MutableList
|
||||
getContainingJvmClassName: kotlin.collections.MutableList
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1476,7 +1476,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -1486,7 +1486,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1524,7 +1524,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1562,6 +1562,6 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
deprecationStatus: null
|
||||
+14
-14
@@ -32,7 +32,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -54,7 +54,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/C.bar
|
||||
@@ -85,7 +85,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -119,7 +119,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/C
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -161,7 +161,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/A
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/A
|
||||
getContainingJvmClassName: test.A
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -183,7 +183,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/A
|
||||
getContainingJvmClassName: test.A
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/A.x
|
||||
@@ -214,7 +214,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/A
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/A
|
||||
getContainingJvmClassName: test.A
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -248,7 +248,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/A
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/A
|
||||
getContainingJvmClassName: test.A
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -305,7 +305,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -315,7 +315,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -353,7 +353,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -391,7 +391,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -566,6 +566,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||
getContainingJvmClassName: test/C
|
||||
getContainingJvmClassName: test.C
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
deprecationStatus: null
|
||||
Vendored
+16
-16
@@ -36,7 +36,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -89,7 +89,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -99,7 +99,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -152,7 +152,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -166,7 +166,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -208,7 +208,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -250,7 +250,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -275,7 +275,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -310,7 +310,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -348,7 +348,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -374,7 +374,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -409,7 +409,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -447,7 +447,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -488,7 +488,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -530,7 +530,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -585,6 +585,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
+15
-15
@@ -36,7 +36,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -89,7 +89,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -99,7 +99,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -152,7 +152,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -166,7 +166,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -208,7 +208,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -250,7 +250,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -275,7 +275,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -316,7 +316,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -342,7 +342,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -383,7 +383,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -424,7 +424,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -466,7 +466,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -521,6 +521,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
deprecationStatus: null
|
||||
+20
-20
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -123,7 +123,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -228,7 +228,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -281,7 +281,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -295,7 +295,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -337,7 +337,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -379,7 +379,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -404,7 +404,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -439,7 +439,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -477,7 +477,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -503,7 +503,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -538,7 +538,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -576,7 +576,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -617,7 +617,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -659,7 +659,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -714,6 +714,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
analysis/analysis-api/testData/components/scopeProvider/memberScope/enumClassWithAbstractMembers.txt
Vendored
+18
-18
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -123,7 +123,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -228,7 +228,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -281,7 +281,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -295,7 +295,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -337,7 +337,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -379,7 +379,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -404,7 +404,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -445,7 +445,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -471,7 +471,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -512,7 +512,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -553,7 +553,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -595,7 +595,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -650,6 +650,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+20
-20
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -123,7 +123,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -228,7 +228,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -281,7 +281,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -295,7 +295,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -337,7 +337,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -379,7 +379,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -404,7 +404,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -439,7 +439,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -477,7 +477,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -503,7 +503,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -538,7 +538,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -576,7 +576,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -617,7 +617,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -659,7 +659,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -714,6 +714,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
Vendored
+19
-19
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -123,7 +123,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -228,7 +228,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -281,7 +281,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -295,7 +295,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -337,7 +337,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -379,7 +379,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -404,7 +404,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -445,7 +445,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -471,7 +471,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -512,7 +512,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -553,7 +553,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -595,7 +595,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -650,6 +650,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
deprecationStatus: null
|
||||
+15
-15
@@ -127,7 +127,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -180,7 +180,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -190,7 +190,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -243,7 +243,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -257,7 +257,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -299,7 +299,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -341,7 +341,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -366,7 +366,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -401,7 +401,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -439,7 +439,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -465,7 +465,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -500,7 +500,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -538,7 +538,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -579,7 +579,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -621,7 +621,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
Vendored
+13
-13
@@ -127,7 +127,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -180,7 +180,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -190,7 +190,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -243,7 +243,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -257,7 +257,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -299,7 +299,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -341,7 +341,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -366,7 +366,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -407,7 +407,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -433,7 +433,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -474,7 +474,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -515,7 +515,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -557,7 +557,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+18
-18
@@ -107,7 +107,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -138,7 +138,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -172,7 +172,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -271,7 +271,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -281,7 +281,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -334,7 +334,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -348,7 +348,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -390,7 +390,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -432,7 +432,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -457,7 +457,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -492,7 +492,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -530,7 +530,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -556,7 +556,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -591,7 +591,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -629,7 +629,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -670,7 +670,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -712,7 +712,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+16
-16
@@ -107,7 +107,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: test/E.foo
|
||||
@@ -138,7 +138,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -172,7 +172,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -271,7 +271,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -281,7 +281,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -334,7 +334,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -348,7 +348,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -390,7 +390,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -432,7 +432,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -457,7 +457,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -498,7 +498,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -524,7 +524,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -565,7 +565,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -606,7 +606,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -648,7 +648,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+15
-15
@@ -127,7 +127,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -180,7 +180,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -190,7 +190,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -243,7 +243,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -257,7 +257,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -299,7 +299,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -341,7 +341,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -366,7 +366,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -401,7 +401,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -439,7 +439,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -465,7 +465,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -500,7 +500,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -538,7 +538,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -579,7 +579,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -621,7 +621,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+13
-13
@@ -127,7 +127,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -180,7 +180,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -190,7 +190,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -243,7 +243,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -257,7 +257,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -299,7 +299,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -341,7 +341,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -366,7 +366,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.name
|
||||
@@ -407,7 +407,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -433,7 +433,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||
@@ -474,7 +474,7 @@ KtKotlinPropertySymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -515,7 +515,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/E
|
||||
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -557,7 +557,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Enum<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Enum
|
||||
getContainingJvmClassName: kotlin.Enum
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+5
-5
@@ -47,7 +47,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -57,7 +57,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -95,7 +95,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -133,7 +133,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -278,6 +278,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||
getContainingJvmClassName: test/B
|
||||
getContainingJvmClassName: test.B
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+189
-189
File diff suppressed because it is too large
Load Diff
+4
-4
@@ -190,7 +190,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -200,7 +200,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -238,7 +238,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -276,7 +276,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+4
-4
@@ -100,7 +100,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -110,7 +110,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -148,7 +148,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -186,7 +186,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+4
-4
@@ -100,7 +100,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -110,7 +110,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -148,7 +148,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -186,7 +186,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+4
-4
@@ -184,7 +184,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -194,7 +194,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -232,7 +232,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -270,7 +270,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+7
-7
@@ -45,7 +45,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Function2
|
||||
getContainingJvmClassName: kotlin.Function2
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -68,7 +68,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Function2
|
||||
getContainingJvmClassName: kotlin.Function2
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -88,7 +88,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/Function2<P1, P2, R>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Function2
|
||||
getContainingJvmClassName: kotlin.Function2
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -141,7 +141,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -151,7 +151,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -189,7 +189,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -227,6 +227,6 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
Vendored
+21
-21
@@ -36,7 +36,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: test/Base<T>
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/Base
|
||||
getContainingJvmClassName: test.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -78,7 +78,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: test/Base<T>
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/Base
|
||||
getContainingJvmClassName: test.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -131,7 +131,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -141,7 +141,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/ClassWithGenericBase
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -194,7 +194,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -204,7 +204,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/ClassWithGenericBase
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -258,7 +258,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/Base
|
||||
getContainingJvmClassName: test.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -272,7 +272,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: test/Base<T>
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/Base
|
||||
getContainingJvmClassName: test.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -326,7 +326,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/Base
|
||||
getContainingJvmClassName: test.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -340,7 +340,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: test/Base<T>
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/Base
|
||||
getContainingJvmClassName: test.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -395,7 +395,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -418,7 +418,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -428,7 +428,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/ClassWithGenericBase
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -483,7 +483,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
KtValueParameterSymbol:
|
||||
@@ -506,7 +506,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -516,7 +516,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/ClassWithGenericBase
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -569,7 +569,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -579,7 +579,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -617,7 +617,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -655,7 +655,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -680,6 +680,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||
getContainingJvmClassName: test/ClassWithGenericBase
|
||||
getContainingJvmClassName: test.ClassWithGenericBase
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+9
-9
@@ -47,7 +47,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/Serializer
|
||||
getContainingJvmClassName: test.Serializer
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -57,7 +57,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/Serializer
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/Serializer
|
||||
getContainingJvmClassName: test.Serializer
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -110,7 +110,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/Serializer
|
||||
getContainingJvmClassName: test.Serializer
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -120,7 +120,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/Serializer
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/Serializer
|
||||
getContainingJvmClassName: test.Serializer
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -173,7 +173,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -183,7 +183,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -221,7 +221,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -259,7 +259,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -284,6 +284,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(customSerlializable.kt)
|
||||
getContainingJvmClassName: test/Serializer
|
||||
getContainingJvmClassName: test.Serializer
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+6
-6
@@ -32,7 +32,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/WithGeneratedCompanion.Companion
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/WithGeneratedCompanion$Companion
|
||||
getContainingJvmClassName: test.WithGeneratedCompanion.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -85,7 +85,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -95,7 +95,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -133,7 +133,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -171,7 +171,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -196,6 +196,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Private
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/WithGeneratedCompanion$Companion
|
||||
getContainingJvmClassName: test.WithGeneratedCompanion.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
+6
-6
@@ -32,7 +32,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: test/MyClass
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: test/MyClass
|
||||
getContainingJvmClassName: test.MyClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -85,7 +85,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -95,7 +95,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -133,7 +133,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -171,7 +171,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: kotlin/Any
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/Any
|
||||
getContainingJvmClassName: kotlin.Any
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -226,6 +226,6 @@ KtConstructorSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(nestedClassAndMaterializeMember.kt)
|
||||
getContainingJvmClassName: test/MyClass
|
||||
getContainingJvmClassName: test.MyClass
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
Vendored
+7
-7
@@ -15,7 +15,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -36,7 +36,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -75,7 +75,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -128,13 +128,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -170,7 +170,7 @@ KtKotlinPropertySymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -205,7 +205,7 @@ KtKotlinPropertySymbol:
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
|
||||
+7
-7
@@ -15,7 +15,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -36,7 +36,7 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -75,7 +75,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -128,13 +128,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -170,7 +170,7 @@ KtKotlinPropertySymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: false
|
||||
@@ -205,7 +205,7 @@ KtKotlinPropertySymbol:
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||
getContainingJvmClassName: test/E
|
||||
getContainingJvmClassName: test.E
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
|
||||
@@ -15,6 +15,6 @@ KtEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/LazyThreadSafetyMode
|
||||
getContainingJvmClassName: kotlin.LazyThreadSafetyMode
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
|
||||
Vendored
+5
-5
@@ -52,13 +52,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -101,7 +101,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -159,12 +159,12 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
+5
-5
@@ -52,13 +52,13 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -101,7 +101,7 @@ KtFunctionSymbol:
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -159,12 +159,12 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/CollectionsKt
|
||||
getContainingJvmClassName: kotlin.collections.CollectionsKt
|
||||
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -46,7 +46,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -60,6 +60,6 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
+3
-3
@@ -40,7 +40,7 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -97,7 +97,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -111,6 +111,6 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: kotlin/collections/List<E>
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: kotlin/collections/List
|
||||
getContainingJvmClassName: kotlin.collections.List
|
||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||
deprecationStatus: null
|
||||
|
||||
+3
-3
@@ -47,7 +47,7 @@ KtFunctionSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(functionsFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
]
|
||||
@@ -57,7 +57,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(functionsFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -98,7 +98,7 @@ KtFunctionSymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(functionsFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
|
||||
+24
-24
@@ -16,7 +16,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.property
|
||||
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -81,7 +81,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -107,7 +107,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.constProperty
|
||||
@@ -138,7 +138,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -172,7 +172,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -201,7 +201,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.staticProperty
|
||||
@@ -232,7 +232,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -266,7 +266,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -295,7 +295,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.fieldProperty
|
||||
@@ -326,7 +326,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -360,7 +360,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -386,7 +386,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.variable
|
||||
@@ -417,7 +417,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -517,7 +517,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
symbolKind: CLASS_MEMBER
|
||||
@@ -528,7 +528,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -557,7 +557,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.staticVariable
|
||||
@@ -588,7 +588,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -688,7 +688,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
symbolKind: CLASS_MEMBER
|
||||
@@ -699,7 +699,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
@@ -728,7 +728,7 @@ KtKotlinPropertySymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
callableIdIfNonLocal: /MyClass.Companion.fieldVariable
|
||||
@@ -759,7 +759,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
hasBackingField: true
|
||||
@@ -859,7 +859,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
symbolKind: CLASS_MEMBER
|
||||
@@ -870,7 +870,7 @@ KtKotlinPropertySymbol:
|
||||
ownTypeArguments: []
|
||||
type: MyClass.Companion
|
||||
getContainingFileSymbol: KtFileSymbol(propertiesFromCompanion.kt)
|
||||
getContainingJvmClassName: MyClass$Companion
|
||||
getContainingJvmClassName: MyClass.Companion
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
getterDeprecationStatus: null
|
||||
|
||||
Vendored
+2
-2
@@ -43,12 +43,12 @@ KtConstructorSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: java/util/ArrayList
|
||||
getContainingJvmClassName: java.util.ArrayList
|
||||
getContainingModule: KtSdkModule "SDK jdk"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: java/util/ArrayList
|
||||
getContainingJvmClassName: java.util.ArrayList
|
||||
getContainingModule: KtSdkModule "SDK jdk"
|
||||
deprecationStatus: null
|
||||
+2
-2
@@ -43,12 +43,12 @@ KtConstructorSymbol:
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: java/util/ArrayList
|
||||
getContainingJvmClassName: java.util.ArrayList
|
||||
getContainingModule: KtSdkModule "SDK jdk"
|
||||
deprecationStatus: null
|
||||
]
|
||||
visibility: Public
|
||||
getContainingFileSymbol: null
|
||||
getContainingJvmClassName: java/util/ArrayList
|
||||
getContainingJvmClassName: java.util.ArrayList
|
||||
getContainingModule: KtSdkModule "SDK jdk"
|
||||
deprecationStatus: null
|
||||
|
||||
+1
-1
@@ -38,6 +38,6 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: test/TopLevel<Outer>.test/TopLevel.Base<T>
|
||||
getContainingFileSymbol: KtFileSymbol(genericFromOuterClassInInnerClass.kt)
|
||||
getContainingJvmClassName: test/TopLevel$Base
|
||||
getContainingJvmClassName: test.TopLevel.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
Vendored
+1
-1
@@ -35,6 +35,6 @@ KtFunctionSymbol:
|
||||
]
|
||||
type: test/TopLevel.Base<T, Outer>
|
||||
getContainingFileSymbol: KtFileSymbol(genericFromOuterClassInInnerClass.kt)
|
||||
getContainingJvmClassName: test/TopLevel$Base
|
||||
getContainingJvmClassName: test.TopLevel.Base
|
||||
getContainingModule: KtSourceModule "Sources of main"
|
||||
deprecationStatus: null
|
||||
|
||||
Reference in New Issue
Block a user