fix compilation and testData after rebase

^KT-54417
This commit is contained in:
Dmitrii Gridin
2022-11-14 12:16:29 +01:00
committed by Space Team
parent d0a420fad9
commit 032026278c
62 changed files with 554 additions and 386 deletions
@@ -14,6 +14,7 @@ import org.jetbrains.kotlin.analysis.api.fir.symbols.KtFirSyntheticJavaPropertyS
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySymbol
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbol
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
import org.jetbrains.kotlin.analysis.utils.errors.requireIsInstance
import org.jetbrains.kotlin.descriptors.annotations.AnnotationUseSiteTarget
import org.jetbrains.kotlin.fir.declarations.FirProperty
@@ -34,8 +35,8 @@ internal class KtFirSymbolInfoProvider(
private val apiVersion = analysisSession.useSiteSession.languageVersionSettings.apiVersion
override fun getDeprecation(symbol: KtSymbol): DeprecationInfo? {
if (symbol is KtFirBackingFieldSymbol || symbol is KtFirPackageSymbol) return null
require(symbol is KtFirSymbol<*>)
if (symbol is KtFirBackingFieldSymbol || symbol is KtFirPackageSymbol || symbol is KtReceiverParameterSymbol) return null
require(symbol is KtFirSymbol<*>) { "${this::class}" }
return when (val firSymbol = symbol.firSymbol) {
is FirPropertySymbol -> {
firSymbol.getDeprecationForCallSite(apiVersion, AnnotationUseSiteTarget.PROPERTY)
@@ -44,7 +45,6 @@ internal class KtFirSymbolInfoProvider(
firSymbol.getDeprecationForCallSite(apiVersion)
}
}
}
override fun getDeprecation(symbol: KtSymbol, annotationUseSiteTarget: AnnotationUseSiteTarget?): DeprecationInfo? {
@@ -43,5 +43,8 @@ fun FirBasedSymbol<*>.getContainingKtModule(firResolveSession: LLFirResolveSessi
return target.llFirModuleData.ktModule
}
fun KtSymbol.getContainingKtModule(firResolveSession: LLFirResolveSession): KtModule =
firSymbol.getContainingKtModule(firResolveSession)
fun KtSymbol.getContainingKtModule(firResolveSession: LLFirResolveSession): KtModule = when (this) {
is KtFirSymbol<*> -> firSymbol.getContainingKtModule(firResolveSession)
is KtReceiverParameterSymbol -> owningCallableSymbol.getContainingKtModule(firResolveSession)
else -> TODO("${this::class}")
}
@@ -8,6 +8,7 @@ package org.jetbrains.kotlin.analysis.api.renderer.declarations.renderers.callab
import org.jetbrains.kotlin.analysis.api.KtAnalysisSession
import org.jetbrains.kotlin.analysis.api.renderer.declarations.KtDeclarationRenderer
import org.jetbrains.kotlin.analysis.api.symbols.KtCallableSymbol
import org.jetbrains.kotlin.analysis.api.symbols.receiverType
import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
import org.jetbrains.kotlin.types.Variance
@@ -107,14 +107,14 @@ public class DebugSymbolRenderer(
}
context(KtAnalysisSession)
private fun PrettyPrinter.renderSymbolInternals(symbol: KtSymbol, customIgnoredPropertyNames: List<String> = emptyList()) {
private fun PrettyPrinter.renderSymbolInternals(symbol: KtSymbol) {
renderSymbolHeader(symbol)
val apiClass = getSymbolApiClass(symbol)
withIndent {
apiClass.members
.asSequence()
.filterIsInstance<KProperty<*>>()
.filter { it.name !in ignoredPropertyNames && it.name !in customIgnoredPropertyNames }
.filter { it.name !in ignoredPropertyNames }
.sortedBy { it.name }
.forEach { member ->
renderProperty(
@@ -14,7 +14,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/I.zoo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +44,13 @@ KtKotlinPropertySymbol:
modality: OPEN
name: zoo
origin: DELEGATED
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/I.zoo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -65,13 +77,19 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/I.zoo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -89,7 +107,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: LOCAL
typeParameters: []
@@ -128,7 +146,7 @@ KtFunctionSymbol:
modality: OPEN
name: foo
origin: DELEGATED
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -155,7 +173,13 @@ KtFunctionSymbol:
modality: OPEN
name: smth
origin: DELEGATED
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtFunctionSymbol(/I.smth)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Short
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -181,7 +205,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -205,7 +229,7 @@ KtKotlinPropertySymbol:
modality: OPEN
name: foo
origin: DELEGATED
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -235,7 +259,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -259,7 +283,7 @@ KtKotlinPropertySymbol:
modality: OPEN
name: bar
origin: DELEGATED
receiverType: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -286,13 +310,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -310,7 +334,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -348,7 +372,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/I.doo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -372,7 +402,13 @@ KtKotlinPropertySymbol:
modality: OPEN
name: doo
origin: DELEGATED
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/I.doo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/String
setter: null
symbolKind: CLASS_MEMBER
@@ -21,7 +21,10 @@ KtKotlinPropertySymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: DELEGATED
owningCallableSymbol: KtKotlinPropertySymbol(/I.zoo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
setter: null
symbolKind: CLASS_MEMBER
@@ -116,7 +119,10 @@ KtFunctionSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: DELEGATED
owningCallableSymbol: KtFunctionSymbol(/I.smth)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Short
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -183,7 +189,10 @@ KtKotlinPropertySymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: DELEGATED
owningCallableSymbol: KtKotlinPropertySymbol(/I.doo)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/String
setter: null
symbolKind: CLASS_MEMBER
@@ -26,7 +26,7 @@ KtFunctionSymbol:
modality: FINAL
name: function
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: TOP_LEVEL
typeParameters: []
@@ -55,7 +55,7 @@ KtFunctionSymbol:
modality: FINAL
name: functionWithDefault
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: TOP_LEVEL
typeParameters: []
@@ -73,7 +73,7 @@ KtFunctionSymbol:
isVararg: false
name: par1
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -100,7 +100,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -123,7 +123,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: testVal
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -152,7 +152,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -175,7 +175,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: initializedVariable
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -202,13 +202,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -226,7 +226,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -262,7 +262,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -285,7 +285,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: unitializedVariable
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -312,13 +312,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -336,7 +336,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -372,7 +372,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -395,7 +395,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: lateinitVariable
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -422,13 +422,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -446,7 +446,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
@@ -482,7 +482,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -505,7 +505,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: variableWithBackingField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -532,13 +532,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -556,7 +556,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -592,7 +592,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -615,7 +615,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: privateSetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -645,13 +645,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -669,7 +669,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
@@ -705,7 +705,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -728,7 +728,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmNameOnSetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -758,13 +758,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -782,7 +782,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
@@ -821,7 +821,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -844,7 +844,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: customGetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -876,7 +876,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -899,7 +899,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmNameOnGetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -928,10 +928,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithReceiver)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -954,10 +957,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: propertyWithReceiver
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithReceiver)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -986,10 +992,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithGenericReceiver)
type: T
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -1012,10 +1021,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: propertyWithGenericReceiver
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithGenericReceiver)
type: T
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -1046,7 +1058,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -1069,7 +1081,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: constant
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -1098,7 +1110,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -1121,7 +1133,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -1148,13 +1160,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -1172,7 +1184,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -26,7 +26,7 @@ KtFunctionSymbol:
modality: FINAL
name: function
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: TOP_LEVEL
typeParameters: []
@@ -55,7 +55,7 @@ KtFunctionSymbol:
modality: FINAL
name: functionWithDefault
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: TOP_LEVEL
typeParameters: []
@@ -73,7 +73,7 @@ KtFunctionSymbol:
isVararg: false
name: par1
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -100,7 +100,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -123,7 +123,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: testVal
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -152,7 +152,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -175,7 +175,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: initializedVariable
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -202,13 +202,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -226,7 +226,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -262,7 +262,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -285,7 +285,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: unitializedVariable
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -312,13 +312,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -336,7 +336,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -372,7 +372,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -395,7 +395,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: lateinitVariable
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -422,13 +422,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -446,7 +446,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
@@ -482,7 +482,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -505,7 +505,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: variableWithBackingField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -532,13 +532,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -556,7 +556,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -592,7 +592,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -615,7 +615,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: privateSetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -645,13 +645,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -669,7 +669,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
@@ -705,7 +705,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
@@ -728,7 +728,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmNameOnSetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -758,13 +758,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -782,7 +782,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
@@ -821,7 +821,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -844,7 +844,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: customGetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -876,7 +876,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -899,7 +899,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmNameOnGetter
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -928,10 +928,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithReceiver)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -954,10 +957,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: propertyWithReceiver
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithReceiver)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -986,10 +992,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithGenericReceiver)
type: T
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -1012,10 +1021,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: propertyWithGenericReceiver
origin: SOURCE
receiver: KtReceiverParameterSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/propertyWithGenericReceiver)
type: T
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -1046,7 +1058,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -1069,7 +1081,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: constant
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -1101,7 +1113,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -1124,7 +1136,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -1151,13 +1163,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -1175,7 +1187,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -8,7 +8,7 @@ KtJavaFieldSymbol:
modality: OPEN
name: field
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -27,7 +27,7 @@ KtJavaFieldSymbol:
modality: OPEN
name: field2
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/String!
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -53,7 +53,7 @@ KtFunctionSymbol:
modality: OPEN
name: equals
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Boolean
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -71,7 +71,7 @@ KtFunctionSymbol:
isVararg: false
name: other
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
@@ -100,7 +100,7 @@ KtFunctionSymbol:
modality: OPEN
name: hashCode
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -127,7 +127,7 @@ KtFunctionSymbol:
modality: OPEN
name: toString
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/String
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -146,7 +146,7 @@ KtConstructorSymbol:
isExtension: false
isPrimary: true
origin: JAVA
receiverType: null
receiverParameter: null
returnType: JavaClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -8,7 +8,7 @@ KtJavaFieldSymbol:
modality: OPEN
name: field
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -27,7 +27,7 @@ KtJavaFieldSymbol:
modality: OPEN
name: field
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/String!
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -53,7 +53,7 @@ KtFunctionSymbol:
modality: OPEN
name: equals
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Boolean
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -71,7 +71,7 @@ KtFunctionSymbol:
isVararg: false
name: other
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
@@ -100,7 +100,7 @@ KtFunctionSymbol:
modality: OPEN
name: hashCode
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -127,7 +127,7 @@ KtFunctionSymbol:
modality: OPEN
name: toString
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/String
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -146,7 +146,7 @@ KtConstructorSymbol:
isExtension: false
isPrimary: true
origin: JAVA
receiverType: null
receiverParameter: null
returnType: JavaClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -15,7 +15,7 @@ KtFunctionSymbol:
modality: OPEN
name: foo
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -42,7 +42,7 @@ KtFunctionSymbol:
modality: OPEN
name: doo
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/String!
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -60,7 +60,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -89,7 +89,7 @@ KtFunctionSymbol:
modality: OPEN
name: getStringValue
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/String!
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -116,7 +116,7 @@ KtFunctionSymbol:
modality: OPEN
name: equals
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Boolean
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -134,7 +134,7 @@ KtFunctionSymbol:
isVararg: false
name: other
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
@@ -163,7 +163,7 @@ KtFunctionSymbol:
modality: OPEN
name: hashCode
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -190,7 +190,7 @@ KtFunctionSymbol:
modality: OPEN
name: toString
origin: LIBRARY
receiverType: null
receiverParameter: null
returnType: kotlin/String
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -209,7 +209,7 @@ KtConstructorSymbol:
isExtension: false
isPrimary: true
origin: JAVA
receiverType: null
receiverParameter: null
returnType: JavaClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -1 +0,0 @@
fun @ReceiverTypeAnnotation kotlin.Int.foo()
@@ -21,10 +21,13 @@ KtFunctionSymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtFunctionSymbol(/foo)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
symbolKind: TOP_LEVEL
typeParameters: []
@@ -21,10 +21,13 @@ KtPropertyGetterSymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/x)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -21,10 +21,13 @@ KtPropertyGetterSymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/x)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -20,7 +20,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -43,7 +43,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: prop
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -76,13 +76,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -103,7 +103,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -22,7 +22,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -45,7 +45,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: prop
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -78,13 +78,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -105,7 +105,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -22,7 +22,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -45,7 +45,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: x
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -82,13 +82,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -111,7 +111,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -24,7 +24,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -47,7 +47,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: x
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -84,13 +84,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -113,7 +113,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -1,2 +0,0 @@
val @ReceiverTypeAnnotation kotlin.Long.prop: kotlin.Boolean
get()
@@ -20,10 +20,13 @@ KtKotlinPropertySymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/prop)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Boolean
symbolKind: ACCESSOR
typeParameters: []
@@ -52,10 +55,13 @@ KtKotlinPropertySymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/prop)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Boolean
setter: null
symbolKind: TOP_LEVEL
@@ -33,13 +33,13 @@ KtPropertySetterSymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -62,7 +62,7 @@ KtPropertySetterSymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -33,13 +33,13 @@ KtPropertySetterSymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -62,7 +62,7 @@ KtPropertySetterSymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -37,7 +37,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: p
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -64,13 +64,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -88,7 +88,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -82,4 +82,4 @@ KtNamedClassOrObjectSymbol:
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
deprecationStatus: null
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -40,7 +40,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -72,7 +72,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -95,7 +95,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -124,7 +124,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -147,7 +147,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i3
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -177,13 +177,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -201,7 +201,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -241,7 +241,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -264,7 +264,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i4
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -294,13 +294,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -318,7 +318,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -359,7 +359,7 @@ KtFunctionSymbol:
modality: FINAL
name: f
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: TOP_LEVEL
typeParameters: []
@@ -413,7 +413,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -437,7 +437,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -471,7 +471,7 @@ KtFunctionSymbol:
modality: FINAL
name: f2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -523,7 +523,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -546,7 +546,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -578,7 +578,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -601,7 +601,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -630,7 +630,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -653,7 +653,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -40,7 +40,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -72,7 +72,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -95,7 +95,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -124,7 +124,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -147,7 +147,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i3
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -177,13 +177,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -201,7 +201,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -240,7 +240,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -263,7 +263,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i4
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -293,13 +293,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -317,7 +317,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -357,7 +357,7 @@ KtFunctionSymbol:
modality: FINAL
name: f
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: TOP_LEVEL
typeParameters: []
@@ -411,7 +411,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -435,7 +435,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -469,7 +469,7 @@ KtFunctionSymbol:
modality: FINAL
name: f2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -521,7 +521,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -544,7 +544,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -576,7 +576,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -599,7 +599,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -631,7 +631,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -654,7 +654,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j2
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -15,7 +15,7 @@ KtFunctionSymbol:
modality: FINAL
name: a
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -33,7 +33,7 @@ KtEnumEntrySymbol:
isExtension: false
name: FirstEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -48,7 +48,7 @@ KtEnumEntrySymbol:
isExtension: false
name: SecondEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -72,7 +72,7 @@ KtFunctionSymbol:
modality: FINAL
name: one
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -99,7 +99,7 @@ KtFunctionSymbol:
modality: FINAL
name: one
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -117,7 +117,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -137,7 +137,7 @@ KtEnumEntrySymbol:
isExtension: false
name: ThirdEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -15,7 +15,7 @@ KtFunctionSymbol:
modality: FINAL
name: a
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -33,7 +33,7 @@ KtEnumEntrySymbol:
isExtension: false
name: FirstEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -48,7 +48,7 @@ KtEnumEntrySymbol:
isExtension: false
name: SecondEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -72,7 +72,7 @@ KtFunctionSymbol:
modality: FINAL
name: one
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -99,7 +99,7 @@ KtFunctionSymbol:
modality: FINAL
name: one
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -117,7 +117,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -137,7 +137,7 @@ KtEnumEntrySymbol:
isExtension: false
name: ThirdEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -15,7 +15,7 @@ KtFunctionSymbol:
modality: FINAL
name: a
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -42,7 +42,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -60,7 +60,7 @@ KtEnumEntrySymbol:
isExtension: false
name: FirstEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -84,7 +84,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -110,7 +110,7 @@ KtKotlinPropertySymbol:
isOverride: true
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -134,7 +134,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -156,7 +156,7 @@ KtEnumEntrySymbol:
isExtension: false
name: SecondEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -180,7 +180,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -207,7 +207,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -225,7 +225,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -245,7 +245,7 @@ KtEnumEntrySymbol:
isExtension: false
name: ThirdEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -269,7 +269,7 @@ KtFunctionSymbol:
modality: ABSTRACT
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -296,7 +296,7 @@ KtFunctionSymbol:
modality: OPEN
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -314,7 +314,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -342,7 +342,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: OPEN
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -366,7 +366,7 @@ KtKotlinPropertySymbol:
modality: OPEN
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -15,7 +15,7 @@ KtFunctionSymbol:
modality: FINAL
name: a
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -42,7 +42,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -60,7 +60,7 @@ KtEnumEntrySymbol:
isExtension: false
name: FirstEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -84,7 +84,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -110,7 +110,7 @@ KtKotlinPropertySymbol:
isOverride: true
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -133,7 +133,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -155,7 +155,7 @@ KtEnumEntrySymbol:
isExtension: false
name: SecondEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -179,7 +179,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -206,7 +206,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -224,7 +224,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -244,7 +244,7 @@ KtEnumEntrySymbol:
isExtension: false
name: ThirdEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -268,7 +268,7 @@ KtFunctionSymbol:
modality: ABSTRACT
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -295,7 +295,7 @@ KtFunctionSymbol:
modality: OPEN
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -313,7 +313,7 @@ KtFunctionSymbol:
isVararg: false
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -341,7 +341,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -365,7 +365,7 @@ KtKotlinPropertySymbol:
modality: OPEN
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: a
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -60,7 +60,7 @@ KtEnumEntrySymbol:
isExtension: false
name: FirstEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -75,7 +75,7 @@ KtEnumEntrySymbol:
isExtension: false
name: SecondEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -98,7 +98,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -122,7 +122,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: b
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -152,7 +152,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(<local>/d)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -176,7 +182,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: d
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(<local>/d)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -198,7 +210,7 @@ KtEnumEntrySymbol:
isExtension: false
name: ThirdEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: a
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -60,7 +60,7 @@ KtEnumEntrySymbol:
isExtension: false
name: FirstEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -75,7 +75,7 @@ KtEnumEntrySymbol:
isExtension: false
name: SecondEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -98,7 +98,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -122,7 +122,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: b
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -152,7 +152,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(<local>/d)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -175,7 +181,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: d
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(<local>/d)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -197,7 +209,7 @@ KtEnumEntrySymbol:
isExtension: false
name: ThirdEntry
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: MyEnumClass
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -37,7 +37,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: p
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -64,13 +64,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -88,7 +88,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -18,7 +18,10 @@ KtFunctionSymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtFunctionSymbol(/foo)
type: kotlin/String
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: TOP_LEVEL
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -37,7 +37,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -64,13 +64,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -88,7 +88,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -125,7 +125,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -148,7 +148,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmFieldOnField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -175,13 +175,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -199,7 +199,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -40,7 +40,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -67,13 +67,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -91,7 +91,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -130,7 +130,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -153,7 +153,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: jvmFieldOnField
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -180,13 +180,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiver: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -204,7 +204,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiver: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -41,7 +41,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -71,13 +71,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -95,7 +95,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -136,7 +136,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -160,7 +160,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -190,13 +190,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -214,7 +214,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -41,7 +41,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: i
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -71,13 +71,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -95,7 +95,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -136,7 +136,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -159,7 +159,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: j
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: KtPropertySetterSymbol:
annotationsList: [
@@ -189,13 +189,13 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -213,7 +213,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: x
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -68,7 +68,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/A.y)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -92,7 +98,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: y
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/A.y)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -71,7 +71,10 @@ KtKotlinPropertySymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/A.y)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -97,7 +100,10 @@ KtKotlinPropertySymbol:
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/A.y)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -394,7 +394,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: [
@@ -473,7 +473,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: [
@@ -394,7 +394,7 @@ KtFunctionSymbol:
modality: FINAL
name: foo
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: [
@@ -123,7 +123,7 @@ KtFunctionSymbol:
modality: FINAL
name: check
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -173,7 +173,7 @@ KtFunctionSymbol:
modality: FINAL
name: check
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -223,7 +223,7 @@ KtFunctionSymbol:
modality: FINAL
name: check
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -123,7 +123,7 @@ KtFunctionSymbol:
modality: FINAL
name: check
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -173,7 +173,7 @@ KtFunctionSymbol:
modality: FINAL
name: check
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -223,7 +223,7 @@ KtFunctionSymbol:
modality: FINAL
name: check
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Unit
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -37,7 +37,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: x
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -66,7 +66,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/y)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -89,7 +95,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: y
origin: SOURCE
receiverType: kotlin/Int
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/y)
type: kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
@@ -118,7 +130,13 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Short
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/get)
type: kotlin/Short
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
@@ -141,7 +159,13 @@ KtKotlinPropertySymbol:
modality: FINAL
name: get
origin: SOURCE
receiverType: kotlin/Short
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/get)
type: kotlin/Short
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Long
setter: KtPropertySetterSymbol:
annotationsList: []
@@ -168,13 +192,19 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
receiverType: kotlin/Short
receiverParameter: KtReceiverParameterSymbol:
annotationsList: []
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/get)
type: kotlin/Short
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
@@ -192,7 +222,7 @@ KtKotlinPropertySymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
@@ -11,7 +11,7 @@ KtValueParameterSymbol:
isVararg: false
name: abc
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -21,10 +21,13 @@ KtFunctionSymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtFunctionSymbol(/foo)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Int
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Unit
symbolKind: TOP_LEVEL
typeParameters: []
@@ -9,6 +9,5 @@ KtReceiverParameterSymbol:
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Int
getContainingModule: Could not render due to java.lang.IllegalArgumentException: Failed requirement.
deprecationStatus: Could not render due to java.lang.IllegalArgumentException: Failed requirement.
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -8,7 +8,7 @@ KtJavaFieldSymbol:
modality: FINAL
name: field
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -8,7 +8,7 @@ KtJavaFieldSymbol:
modality: OPEN
name: field
origin: JAVA
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
@@ -11,7 +11,7 @@ KtValueParameterSymbol:
isVararg: false
name: abc
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: abc
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
modality: FINAL
name: abc
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
@@ -20,10 +20,13 @@ KtKotlinPropertySymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/prop)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Boolean
symbolKind: ACCESSOR
typeParameters: []
@@ -52,10 +55,13 @@ KtKotlinPropertySymbol:
psi: KtAnnotationEntry
]
origin: SOURCE
owningCallableSymbol: KtKotlinPropertySymbol(/prop)
type: [
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
returnType: kotlin/Boolean
setter: null
symbolKind: TOP_LEVEL
@@ -9,6 +9,5 @@ KtReceiverParameterSymbol:
ReceiverTypeAnnotation()
psi: KtAnnotationEntry
] @R|ReceiverTypeAnnotation|() kotlin/Long
getContainingModule: Could not render due to java.lang.IllegalArgumentException: Failed requirement.
deprecationStatus: Could not render due to java.lang.IllegalArgumentException: Failed requirement.
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -11,7 +11,7 @@ KtValueParameterSymbol:
isVararg: false
name: value
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -11,7 +11,7 @@ KtValueParameterSymbol:
isVararg: false
name: abc
origin: SOURCE
receiverType: null
receiverParameter: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
@@ -219,7 +219,7 @@ fun deserializeClassToSymbol(
valueClassRepresentation =
classProto.loadValueClassRepresentation(context.nameResolver, context.typeTable, context.typeDeserializer::simpleType) { name ->
val member = declarations.singleOrNull { it is FirProperty && it.receiverTypeRef == null && it.name == name }
val member = declarations.singleOrNull { it is FirProperty && it.receiverParameter == null && it.name == name }
(member as FirProperty?)?.returnTypeRef?.coneTypeSafe()
} ?: computeValueClassRepresentation(this, session)
@@ -245,7 +245,7 @@ private fun FirCallableSymbol<*>.toSymbolForCall(
dispatchReceiver.typeRef.coneType.let { it.findClassRepresentation(it, declarationStorage.session) }
}
// Unbound callable reference to member (non-extension)
isReference && fir.receiverTypeRef == null -> {
isReference && fir.receiverParameter == null -> {
// TODO: remove runIf with StandardClassIds.Any comparison after fixing ValueClass::equals case (KT-54887)
runIf(containingClassLookupTag()?.classId != StandardClassIds.Any) {
(explicitReceiver as? FirResolvedQualifier)?.toLookupTag()
@@ -37,6 +37,7 @@ import org.jetbrains.kotlin.fir.symbols.constructStarProjectedType
import org.jetbrains.kotlin.fir.symbols.impl.*
import org.jetbrains.kotlin.fir.types.ConeClassLikeType
import org.jetbrains.kotlin.fir.types.ConeStarProjection
import org.jetbrains.kotlin.fir.types.FirImplicitTypeRef
import org.jetbrains.kotlin.fir.types.FirTypeRef
import org.jetbrains.kotlin.fir.types.builder.buildImplicitTypeRef
import org.jetbrains.kotlin.fir.types.builder.buildResolvedTypeRef
@@ -67,7 +67,7 @@ private class FirDeclarationsResolveTransformerForAnnotationArgumentsMapping(
context.withSimpleFunction(simpleFunction, session) {
simpleFunction
.transformReturnTypeRef(transformer, data)
.transformReceiverTypeRef(transformer, data)
.transformReceiverParameter(transformer, data)
.transformValueParameters(transformer, data)
.transformAnnotations(transformer, data)
}
@@ -82,7 +82,7 @@ private class FirDeclarationsResolveTransformerForAnnotationArgumentsMapping(
context.withConstructor(constructor) {
constructor
.transformAnnotations(transformer, data)
.transformReceiverTypeRef(transformer, data)
.transformReceiverParameter(transformer, data)
.transformReturnTypeRef(transformer, data)
context.forConstructorParameters(constructor, containingClass, components) {
@@ -104,13 +104,13 @@ private class FirDeclarationsResolveTransformerForAnnotationArgumentsMapping(
}
override fun transformProperty(property: FirProperty, data: ResolutionMode): FirProperty {
property.transformReceiverTypeRef(transformer, ResolutionMode.ContextIndependent)
property.transformReceiverParameter(transformer, ResolutionMode.ContextIndependent)
doTransformTypeParameters(property)
context.withProperty(property) {
property
.transformAnnotations(transformer, data)
.transformReceiverTypeRef(transformer, data)
.transformReceiverParameter(transformer, data)
.transformReturnTypeRef(transformer, data)
.transformGetter(transformer, data)
.transformSetter(transformer, data)
@@ -126,7 +126,7 @@ private class FirDeclarationsResolveTransformerForAnnotationArgumentsMapping(
propertyAccessor
.transformValueParameters(transformer, data)
.transformReturnTypeRef(transformer, data)
.transformReceiverTypeRef(transformer, data)
.transformReceiverParameter(transformer, data)
.transformReturnTypeRef(transformer, data)
.transformAnnotations(transformer, data)
return propertyAccessor
@@ -140,7 +140,7 @@ private class FirDeclarationsResolveTransformerForAnnotationArgumentsMapping(
context.forEnumEntry {
enumEntry
.transformAnnotations(transformer, data)
.transformReceiverTypeRef(transformer, data)
.transformReceiverParameter(transformer, data)
.transformReturnTypeRef(transformer, data)
.transformTypeParameters(transformer, data)
}