[AA] DebugSymbolRenderer: render symbols recursively

^KT-54311
This commit is contained in:
Dmitrii Gridin
2022-10-10 17:51:08 +02:00
committed by Space Team
parent 728e1941ac
commit 4ee5bf178c
68 changed files with 9096 additions and 406 deletions
@@ -134,13 +134,15 @@ public object DebugSymbolRenderer {
} }
} }
if (symbol is KtPropertyGetterSymbol || symbol is KtPropertySetterSymbol || symbol is KtValueParameterSymbol) {
renderSymbol(symbol)
return
}
append(getSymbolApiClass(symbol).simpleName) append(getSymbolApiClass(symbol).simpleName)
append("(") append("(")
when (symbol) { when (symbol) {
is KtClassLikeSymbol -> renderId(symbol.classIdIfNonLocal, symbol) is KtClassLikeSymbol -> renderId(symbol.classIdIfNonLocal, symbol)
is KtValueParameterSymbol -> renderValue(symbol.name)
is KtPropertyGetterSymbol -> append("<getter>")
is KtPropertySetterSymbol -> append("<setter>")
is KtCallableSymbol -> renderId(symbol.callableIdIfNonLocal, symbol) is KtCallableSymbol -> renderId(symbol.callableIdIfNonLocal, symbol)
is KtNamedSymbol -> renderValue(symbol.name) is KtNamedSymbol -> renderValue(symbol.name)
else -> error("Unsupported symbol ${symbol::class.java.name}") else -> error("Unsupported symbol ${symbol::class.java.name}")
@@ -85,15 +85,64 @@ KtFunctionSymbol:
KtTypeParameterSymbol(Y) KtTypeParameterSymbol(Y)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
KtValueParameterSymbol(y) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: X
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: Y
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Outer.A.map callableIdIfNonLocal: /Outer.A.map
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/collections/Map<X, O>
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -160,7 +209,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -173,7 +173,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -198,7 +214,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -223,7 +255,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -248,7 +296,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -319,7 +383,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -367,7 +447,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -392,15 +488,64 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(fromIndex) KtValueParameterSymbol:
KtValueParameterSymbol(toIndex) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: fromIndex
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: toIndex
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: kotlin/collections/List.size callableIdIfNonLocal: kotlin/collections/List.size
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: ABSTRACT
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -444,7 +589,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -79,15 +79,64 @@ KtFunctionSymbol:
KtTypeParameterSymbol(Y) KtTypeParameterSymbol(Y)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
KtValueParameterSymbol(y) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: X
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: Y
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Outer.A.map callableIdIfNonLocal: /Outer.A.map
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/collections/Map<X, O>
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -131,7 +180,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -79,15 +79,64 @@ KtFunctionSymbol:
KtTypeParameterSymbol(Y) KtTypeParameterSymbol(Y)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
KtValueParameterSymbol(y) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: X
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: Y
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.map callableIdIfNonLocal: /A.map
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/collections/Map<X, kotlin/String>
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -131,7 +180,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -173,7 +173,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -198,7 +214,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -223,7 +255,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -248,7 +296,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -319,7 +383,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -367,7 +447,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -392,15 +488,64 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(fromIndex) KtValueParameterSymbol:
KtValueParameterSymbol(toIndex) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: fromIndex
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: toIndex
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtKotlinPropertySymbol: KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: kotlin/collections/List.size callableIdIfNonLocal: kotlin/collections/List.size
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: ABSTRACT
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -444,7 +589,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
KtFunctionSymbol: KtFunctionSymbol:
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /I.foo callableIdIfNonLocal: /I.foo
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /I.zoo callableIdIfNonLocal: /I.zoo
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: kotlin/Int
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -20,7 +37,59 @@ KtKotlinPropertySymbol:
origin: DELEGATED origin: DELEGATED
receiverType: kotlin/Int receiverType: kotlin/Int
returnType: kotlin/Unit returnType: kotlin/Unit
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Unit
symbolKind: LOCAL
typeParameters: []
receiverType: kotlin/Int
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Unit
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -90,7 +159,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /I.foo callableIdIfNonLocal: /I.foo
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -124,7 +210,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /I.bar callableIdIfNonLocal: /I.bar
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -142,7 +245,59 @@ KtKotlinPropertySymbol:
origin: DELEGATED origin: DELEGATED
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -158,7 +313,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /I.doo callableIdIfNonLocal: /I.doo
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: OPEN
origin: DELEGATED
receiverType: kotlin/Int
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -60,7 +60,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(par1) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: par1
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -70,7 +86,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /testVal callableIdIfNonLocal: /testVal
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -103,7 +136,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /initializedVariable callableIdIfNonLocal: /initializedVariable
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -121,7 +171,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -136,7 +238,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /unitializedVariable callableIdIfNonLocal: /unitializedVariable
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -154,7 +273,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -169,7 +340,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /lateinitVariable callableIdIfNonLocal: /lateinitVariable
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -187,7 +375,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/String returnType: kotlin/String
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -202,7 +442,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /variableWithBackingField callableIdIfNonLocal: /variableWithBackingField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -220,7 +477,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -235,7 +544,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /privateSetter callableIdIfNonLocal: /privateSetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -253,7 +579,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/String returnType: kotlin/String
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "customPrivateSetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
]
visibility: Private
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -268,7 +649,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmNameOnSetter callableIdIfNonLocal: /jvmNameOnSetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -286,7 +684,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/String returnType: kotlin/String
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "customPrivateSetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
]
visibility: Private
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -301,7 +754,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /customGetter callableIdIfNonLocal: /customGetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "myCustomGetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -334,7 +807,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmNameOnGetter callableIdIfNonLocal: /jvmNameOnGetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "myCustomGetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -367,7 +860,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /propertyWithReceiver callableIdIfNonLocal: /propertyWithReceiver
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -400,7 +910,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /propertyWithGenericReceiver callableIdIfNonLocal: /propertyWithGenericReceiver
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: false
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: T
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -435,7 +962,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /constant callableIdIfNonLocal: /constant
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -468,7 +1012,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmField callableIdIfNonLocal: /jvmField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -486,7 +1047,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -60,7 +60,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(par1) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: par1
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -70,7 +86,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /testVal callableIdIfNonLocal: /testVal
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -103,7 +136,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /initializedVariable callableIdIfNonLocal: /initializedVariable
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -121,7 +171,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -136,7 +238,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /unitializedVariable callableIdIfNonLocal: /unitializedVariable
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -154,7 +273,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -169,7 +340,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /lateinitVariable callableIdIfNonLocal: /lateinitVariable
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -187,7 +375,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/String returnType: kotlin/String
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -202,7 +442,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /variableWithBackingField callableIdIfNonLocal: /variableWithBackingField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -220,7 +477,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -235,7 +544,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /privateSetter callableIdIfNonLocal: /privateSetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -253,7 +579,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/String returnType: kotlin/String
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "customPrivateSetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
]
visibility: Private
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -268,7 +649,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmNameOnSetter callableIdIfNonLocal: /jvmNameOnSetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -286,7 +684,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/String returnType: kotlin/String
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "customPrivateSetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
]
visibility: Private
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -301,7 +754,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /customGetter callableIdIfNonLocal: /customGetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "myCustomGetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -334,7 +807,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmNameOnGetter callableIdIfNonLocal: /jvmNameOnGetter
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "myCustomGetter")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -367,7 +860,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /propertyWithReceiver callableIdIfNonLocal: /propertyWithReceiver
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -400,7 +910,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /propertyWithGenericReceiver callableIdIfNonLocal: /propertyWithGenericReceiver
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -435,7 +962,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /constant callableIdIfNonLocal: /constant
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -471,7 +1015,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /jvmField callableIdIfNonLocal: /jvmField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -489,7 +1050,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -0,0 +1,136 @@
FILE SYMBOL:
KtFileSymbol:
annotationsList: []
origin: SOURCE
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
CALLABLE NAMES:
[test, testVal]
CALLABLE SYMBOLS:
KtFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: /test
contextReceivers: []
hasStableParameterNames: true
isBuiltinFunctionInvoke: false
isExtension: false
isExternal: false
isInfix: false
isInline: false
isOperator: false
isOverride: false
isStatic: false
isSuspend: false
modality: FINAL
name: test
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: TOP_LEVEL
typeParameters: []
valueParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /testVal
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: false
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true
hasGetter: true
hasSetter: false
initializer: KtConstantInitializerValue(2)
isConst: false
isDelegatedProperty: false
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: testVal
origin: SOURCE
receiverType: null
returnType: kotlin/Int
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getTestVal
javaSetterName: null
setterDeprecationStatus: null
CLASSIFIER NAMES:
[C, I]
CLASSIFIER SYMBOLS:
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: C
classKind: CLASS
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: FINAL
name: C
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: I
classKind: INTERFACE
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: ABSTRACT
name: I
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -39,7 +39,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /testVal callableIdIfNonLocal: /testVal
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
File diff suppressed because it is too large Load Diff
@@ -20,7 +20,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -49,8 +65,40 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
KtValueParameterSymbol(element) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -79,8 +127,40 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
KtValueParameterSymbol(elements) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -109,7 +189,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -192,7 +288,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -221,7 +333,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -250,7 +378,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -279,7 +423,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -308,7 +468,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -337,8 +513,40 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
KtValueParameterSymbol(element) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -367,8 +575,40 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(fromIndex) KtValueParameterSymbol:
KtValueParameterSymbol(toIndex) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: fromIndex
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: toIndex
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -397,7 +637,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: SUBSTITUTION_OVERRIDE
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -426,7 +682,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: elements
origin: SUBSTITUTION_OVERRIDE
receiverType: null
returnType: kotlin/collections/Collection<E>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -455,7 +727,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: SUBSTITUTION_OVERRIDE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -484,7 +772,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: SUBSTITUTION_OVERRIDE
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -567,7 +871,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: SUBSTITUTION_OVERRIDE
receiverType: null
returnType: E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E> getDispatchReceiver(): kotlin/collections/MutableList<E>
@@ -578,7 +898,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: kotlin/collections/List.size callableIdIfNonLocal: kotlin/collections/List.size
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: ABSTRACT
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -630,7 +967,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Any getDispatchReceiver(): kotlin/Any
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: null callableIdIfNonLocal: null
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -81,7 +98,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: SUBSTITUTION_OVERRIDE
receiverType: null
returnType: test/E
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): test/E getDispatchReceiver(): test/E
@@ -110,7 +143,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Enum<E> getDispatchReceiver(): kotlin/Enum<E>
@@ -178,7 +227,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: kotlin/Enum.name callableIdIfNonLocal: kotlin/Enum.name
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: LIBRARY
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -212,7 +278,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: kotlin/Enum.ordinal callableIdIfNonLocal: kotlin/Enum.ordinal
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
File diff suppressed because it is too large Load Diff
@@ -20,8 +20,40 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(p1) KtValueParameterSymbol:
KtValueParameterSymbol(p2) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: p1
origin: LIBRARY
receiverType: null
returnType: P1
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: p2
origin: LIBRARY
receiverType: null
returnType: P2
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Function2<P1, P2, R> getDispatchReceiver(): kotlin/Function2<P1, P2, R>
@@ -50,7 +82,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Any getDispatchReceiver(): kotlin/Any
@@ -20,7 +20,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: PLUGIN
receiverType: null
returnType: test/FirstTarget
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): test/Serializer getDispatchReceiver(): test/Serializer
@@ -49,7 +65,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: PLUGIN
receiverType: null
returnType: test/SecondTarget
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): test/Serializer getDispatchReceiver(): test/Serializer
@@ -78,7 +110,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Any getDispatchReceiver(): kotlin/Any
@@ -47,7 +47,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Any getDispatchReceiver(): kotlin/Any
@@ -47,7 +47,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(other) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: other
origin: LIBRARY
receiverType: null
returnType: kotlin/Any?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/Any getDispatchReceiver(): kotlin/Any
@@ -0,0 +1,122 @@
KtFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: kotlin/collections/listOf
contextReceivers: []
hasStableParameterNames: true
isBuiltinFunctionInvoke: false
isExtension: false
isExternal: false
isInfix: false
isInline: false
isOperator: false
isOverride: false
isStatic: false
isSuspend: false
modality: FINAL
name: listOf
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/List<T>
symbolKind: TOP_LEVEL
typeParameters: [
KtTypeParameterSymbol(T)
]
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: SOURCE
receiverType: null
returnType: T
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
deprecationStatus: null
KtFunctionSymbol:
annotationsList: [
kotlin/internal/InlineOnly()
psi: null
]
callableIdIfNonLocal: kotlin/collections/listOf
contextReceivers: []
hasStableParameterNames: true
isBuiltinFunctionInvoke: false
isExtension: false
isExternal: false
isInfix: false
isInline: true
isOperator: false
isOverride: false
isStatic: false
isSuspend: false
modality: FINAL
name: listOf
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/List<T>
symbolKind: TOP_LEVEL
typeParameters: [
KtTypeParameterSymbol(T)
]
valueParameters: []
visibility: Public
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
deprecationStatus: null
KtFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: kotlin/collections/listOf
contextReceivers: []
hasStableParameterNames: true
isBuiltinFunctionInvoke: false
isExtension: false
isExternal: false
isInfix: false
isInline: false
isOperator: false
isOverride: false
isStatic: false
isSuspend: false
modality: FINAL
name: listOf
origin: LIBRARY
receiverType: null
returnType: kotlin/collections/List<T>
symbolKind: TOP_LEVEL
typeParameters: [
KtTypeParameterSymbol(T)
]
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: true
name: elements
origin: SOURCE
receiverType: null
returnType: T
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
getContainingModule: KtLibraryModule "Library kotlin-stdlib"
deprecationStatus: null
@@ -22,7 +22,23 @@ KtFunctionSymbol:
KtTypeParameterSymbol(T) KtTypeParameterSymbol(T)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(element) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: element
origin: LIBRARY
receiverType: null
returnType: T
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtLibraryModule "Library kotlin-stdlib" getContainingModule: KtLibraryModule "Library kotlin-stdlib"
@@ -83,7 +99,23 @@ KtFunctionSymbol:
KtTypeParameterSymbol(T) KtTypeParameterSymbol(T)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(elements) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: true
name: elements
origin: LIBRARY
receiverType: null
returnType: T
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtLibraryModule "Library kotlin-stdlib" getContainingModule: KtLibraryModule "Library kotlin-stdlib"
@@ -20,7 +20,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/List<E> getDispatchReceiver(): kotlin/collections/List<E>
@@ -20,7 +20,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/List<E> getDispatchReceiver(): kotlin/collections/List<E>
@@ -48,7 +48,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/List<E> getDispatchReceiver(): kotlin/collections/List<E>
@@ -47,7 +47,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(index) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: index
origin: LIBRARY
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): kotlin/collections/List<E> getDispatchReceiver(): kotlin/collections/List<E>
@@ -52,8 +52,40 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(param1) KtValueParameterSymbol:
KtValueParameterSymbol(param2) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/Anno.param1)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: param1
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/Anno.param2)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: param2
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -29,7 +29,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: null callableIdIfNonLocal: null
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -77,7 +94,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /AnonymousContainer.anonymousObject callableIdIfNonLocal: /AnonymousContainer.anonymousObject
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -29,7 +29,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: null callableIdIfNonLocal: null
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -77,7 +94,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /AnonymousContainer.anonymousObject callableIdIfNonLocal: /AnonymousContainer.anonymousObject
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: java/lang/Runnable
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -51,13 +51,45 @@ KtPropertySetterSymbol:
isOverride: false isOverride: false
modality: FINAL modality: FINAL
origin: SOURCE origin: SOURCE
parameter: KtValueParameterSymbol(value) parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null receiverType: null
returnType: kotlin/Unit returnType: kotlin/Unit
symbolKind: ACCESSOR symbolKind: ACCESSOR
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(value) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -67,7 +99,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /p callableIdIfNonLocal: /p
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -85,7 +134,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -0,0 +1,79 @@
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /A.i
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true
hasGetter: true
hasSetter: false
initializer: null
isConst: false
isDelegatedProperty: false
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: i
origin: SOURCE
receiverType: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getI
javaSetterName: null
setterDeprecationStatus: null
KtClassInitializerSymbol:
origin: SOURCE
symbolKind: CLASS_MEMBER
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: A
classKind: CLASS
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: FINAL
name: A
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.i callableIdIfNonLocal: /A.i
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -0,0 +1,100 @@
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /A.a
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true
hasGetter: true
hasSetter: false
initializer: KtConstantInitializerValue(10)
isConst: false
isDelegatedProperty: false
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: a
origin: SOURCE
receiverType: null
returnType: kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getA
javaSetterName: null
setterDeprecationStatus: null
KtFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: /A.x
contextReceivers: []
hasStableParameterNames: true
isBuiltinFunctionInvoke: false
isExtension: false
isExternal: false
isInfix: false
isInline: false
isOperator: false
isOverride: false
isStatic: false
isSuspend: false
modality: FINAL
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: CLASS_MEMBER
typeParameters: []
valueParameters: []
visibility: Public
getDispatchReceiver(): A
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: A
classKind: CLASS
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: FINAL
name: A
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.a callableIdIfNonLocal: /A.a
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -52,8 +52,40 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(a) KtValueParameterSymbol:
KtValueParameterSymbol(b) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/A.a)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: a
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: b
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -50,7 +50,23 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -110,8 +126,40 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(y) KtValueParameterSymbol:
KtValueParameterSymbol(z) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: z
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -32,7 +32,23 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(int) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: int
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -26,7 +26,24 @@ KtKotlinPropertySymbol:
ContextReceiver(kotlin/Int) ContextReceiver(kotlin/Int)
ContextReceiver(s@kotlin/String) ContextReceiver(s@kotlin/String)
] ]
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -0,0 +1,358 @@
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.x)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.y)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.z)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: z
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtConstructorSymbol:
annotationsList: []
callableIdIfNonLocal: null
containingClassIdIfNonLocal: MyColor
contextReceivers: []
hasStableParameterNames: true
isExtension: false
isPrimary: true
origin: SOURCE
receiverType: null
returnType: MyColor
symbolKind: CLASS_MEMBER
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.x)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.y)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.z)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: z
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: MyColor
classKind: CLASS
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: FINAL
name: MyColor
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtAnonymousFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasStableParameterNames: true
isExtension: false
origin: SOURCE
receiverType: null
returnType: MyColor
symbolKind: LOCAL
typeParameters: []
valueParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /Some.delegate
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false
hasGetter: true
hasSetter: false
initializer: null
isConst: false
isDelegatedProperty: true
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: delegate
origin: SOURCE
receiverType: null
returnType: MyColor
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getDelegate
javaSetterName: null
setterDeprecationStatus: null
KtAnonymousFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasStableParameterNames: true
isExtension: false
origin: SOURCE
receiverType: null
returnType: MyColor
symbolKind: LOCAL
typeParameters: []
valueParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /Some.lambda
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true
hasGetter: true
hasSetter: false
initializer: KtNonConstantInitializerValue(lazy { MyColor(1, 2, 3) })
isConst: false
isDelegatedProperty: false
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: lambda
origin: SOURCE
receiverType: null
returnType: kotlin/Lazy<MyColor>
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getLambda
javaSetterName: null
setterDeprecationStatus: null
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /Some.nonLazy
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true
hasGetter: true
hasSetter: false
initializer: KtNonConstantInitializerValue(MyColor(1, 2, 3))
isConst: false
isDelegatedProperty: false
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: nonLazy
origin: SOURCE
receiverType: null
returnType: MyColor
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getNonLazy
javaSetterName: null
setterDeprecationStatus: null
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: Some
classKind: CLASS
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: FINAL
name: Some
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -72,9 +72,57 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
KtValueParameterSymbol(y) annotationsList: []
KtValueParameterSymbol(z) callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.x)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.y)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/MyColor.z)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: z
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -122,7 +170,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Some.delegate callableIdIfNonLocal: /Some.delegate
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: MyColor
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -171,7 +236,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Some.lambda callableIdIfNonLocal: /Some.lambda
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Lazy<MyColor>
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -205,7 +287,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Some.nonLazy callableIdIfNonLocal: /Some.nonLazy
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: MyColor
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -5,7 +5,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /i callableIdIfNonLocal: /i
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -38,7 +55,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /i2 callableIdIfNonLocal: /i2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -71,7 +105,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /i3 callableIdIfNonLocal: /i3
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -89,7 +140,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -104,7 +207,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /i4 callableIdIfNonLocal: /i4
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -122,7 +242,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -195,7 +367,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /Foo.i2 callableIdIfNonLocal: /Foo.i2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -285,7 +474,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /j callableIdIfNonLocal: /j
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -321,7 +527,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /j2 callableIdIfNonLocal: /j2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -354,7 +577,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /j2 callableIdIfNonLocal: /j2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -5,7 +5,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /i callableIdIfNonLocal: /i
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -38,7 +55,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /i2 callableIdIfNonLocal: /i2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/Deprecated(message = "don't use getter of i2")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -71,7 +108,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /i3 callableIdIfNonLocal: /i3
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -89,7 +143,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/Deprecated(message = "don't use getter of i3")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -104,7 +213,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /i4 callableIdIfNonLocal: /i4
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/Deprecated(message = "don't use getter of i4")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -122,7 +251,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/Deprecated(message = "don't use setter of i4")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -195,7 +379,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /Foo.i2 callableIdIfNonLocal: /Foo.i2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -285,7 +486,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /j callableIdIfNonLocal: /j
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -321,7 +539,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /j2 callableIdIfNonLocal: /j2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -357,7 +592,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /j2 callableIdIfNonLocal: /j2
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -52,8 +52,40 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
KtValueParameterSymbol(y) annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/P.x)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/P.y)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: y
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -0,0 +1,153 @@
KtKotlinPropertySymbol:
annotationsList: []
callableIdIfNonLocal: /Foo.p
contextReceivers: []
getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true
hasGetter: true
hasSetter: false
initializer: KtConstantInitializerValue(null)
isConst: false
isDelegatedProperty: false
isExtension: false
isFromPrimaryConstructor: false
isLateInit: false
isOverride: false
isStatic: false
isVal: true
modality: FINAL
name: p
origin: SOURCE
receiverType: null
returnType: dynamic
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
getterDeprecationStatus: null
javaGetterName: getP
javaSetterName: null
setterDeprecationStatus: null
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: p
origin: SOURCE
receiverType: null
returnType: dynamic
symbolKind: LOCAL
typeParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtAnonymousFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasStableParameterNames: true
isExtension: false
origin: SOURCE
receiverType: null
returnType: dynamic
symbolKind: LOCAL
typeParameters: []
valueParameters: []
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtFunctionSymbol:
annotationsList: []
callableIdIfNonLocal: /Foo.f
contextReceivers: []
hasStableParameterNames: true
isBuiltinFunctionInvoke: false
isExtension: false
isExternal: false
isInfix: false
isInline: false
isOperator: false
isOverride: false
isStatic: false
isSuspend: false
modality: FINAL
name: f
origin: SOURCE
receiverType: null
returnType: dynamic
symbolKind: CLASS_MEMBER
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: p
origin: SOURCE
receiverType: null
returnType: dynamic
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
getDispatchReceiver(): Foo
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
KtNamedClassOrObjectSymbol:
annotationsList: []
classIdIfNonLocal: Foo
classKind: CLASS
companionObject: null
contextReceivers: []
isData: false
isExternal: false
isFun: false
isInline: false
isInner: false
modality: FINAL
name: Foo
origin: SOURCE
superTypes: [
kotlin/Any
]
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Foo.p callableIdIfNonLocal: /Foo.p
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: dynamic
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -89,7 +106,23 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(p) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: p
origin: SOURCE
receiverType: null
returnType: dynamic
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): Foo getDispatchReceiver(): Foo
@@ -32,7 +32,23 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(value) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/Style.value)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Private visibility: Private
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -64,7 +80,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: null callableIdIfNonLocal: null
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: true
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -113,7 +146,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Style.exitAnimation callableIdIfNonLocal: /Style.exitAnimation
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: ABSTRACT
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -32,7 +32,23 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(value) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: KtKotlinPropertySymbol(/Style.value)
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Private visibility: Private
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -63,7 +79,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: null callableIdIfNonLocal: null
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: true
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -112,7 +145,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Style.exitAnimation callableIdIfNonLocal: /Style.exitAnimation
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/String
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -163,4 +213,4 @@ KtNamedClassOrObjectSymbol:
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null deprecationStatus: null
@@ -51,13 +51,45 @@ KtPropertySetterSymbol:
isOverride: false isOverride: false
modality: FINAL modality: FINAL
origin: SOURCE origin: SOURCE
parameter: KtValueParameterSymbol(value) parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null receiverType: null
returnType: kotlin/Unit returnType: kotlin/Unit
symbolKind: ACCESSOR symbolKind: ACCESSOR
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(value) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -67,7 +99,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /p callableIdIfNonLocal: /p
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -85,7 +134,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -40,7 +40,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -55,7 +55,23 @@ KtFunctionSymbol:
KtTypeParameterSymbol(X) KtTypeParameterSymbol(X)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(x) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: x
origin: SOURCE
receiverType: null
returnType: X
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -32,7 +32,23 @@ KtConstructorSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(i) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: i
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -45,7 +45,23 @@ KtAnonymousFunctionSymbol:
symbolKind: LOCAL symbolKind: LOCAL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(a) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: a
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null deprecationStatus: null
@@ -112,7 +128,23 @@ KtAnonymousFunctionSymbol:
symbolKind: LOCAL symbolKind: LOCAL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(a) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: a
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null deprecationStatus: null
@@ -159,7 +191,23 @@ KtAnonymousFunctionSymbol:
symbolKind: LOCAL symbolKind: LOCAL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(it) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: true
isNoinline: false
isVararg: false
name: it
origin: SOURCE_MEMBER_GENERATED
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null deprecationStatus: null
@@ -232,7 +280,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(lmbd) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: lmbd
origin: SOURCE
receiverType: null
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Private visibility: Private
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmField callableIdIfNonLocal: /jvmField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -20,7 +37,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -35,7 +104,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /jvmFieldOnField callableIdIfNonLocal: /jvmFieldOnField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -53,7 +139,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -5,7 +5,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /jvmField callableIdIfNonLocal: /jvmField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -23,7 +40,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Long returnType: kotlin/Long
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Long
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -41,7 +110,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /jvmFieldOnField callableIdIfNonLocal: /jvmFieldOnField
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -59,7 +145,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Foo.i callableIdIfNonLocal: /Foo.i
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -20,7 +37,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -92,13 +161,45 @@ KtPropertySetterSymbol:
isOverride: false isOverride: false
modality: FINAL modality: FINAL
origin: SOURCE origin: SOURCE
parameter: KtValueParameterSymbol(value) parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null receiverType: null
returnType: kotlin/Unit returnType: kotlin/Unit
symbolKind: ACCESSOR symbolKind: ACCESSOR
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(value) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): Foo getDispatchReceiver(): Foo
@@ -109,7 +210,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Foo.j callableIdIfNonLocal: /Foo.j
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "getMyJ")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -127,7 +248,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "setMyJ")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -2,7 +2,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Foo.i callableIdIfNonLocal: /Foo.i
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "getMyI")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -20,7 +40,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "setMyI")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -91,13 +166,45 @@ KtPropertySetterSymbol:
isOverride: false isOverride: false
modality: FINAL modality: FINAL
origin: SOURCE origin: SOURCE
parameter: KtValueParameterSymbol(value) parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null receiverType: null
returnType: kotlin/Unit returnType: kotlin/Unit
symbolKind: ACCESSOR symbolKind: ACCESSOR
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(value) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -107,7 +214,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /Foo.j callableIdIfNonLocal: /Foo.j
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "getMyJ")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -125,7 +252,62 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
kotlin/jvm/JvmName(name = "setMyJ")
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.x callableIdIfNonLocal: /A.x
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -58,7 +75,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.y callableIdIfNonLocal: /A.y
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.x callableIdIfNonLocal: /A.x
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -57,7 +74,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /A.y callableIdIfNonLocal: /A.y
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -120,7 +120,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /prop callableIdIfNonLocal: /prop
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -138,7 +155,59 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: value
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -191,7 +260,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /lazyProperty callableIdIfNonLocal: /lazyProperty
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -122,7 +122,27 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /prop callableIdIfNonLocal: /prop
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: [
GetAnnotation()
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: true hasSetter: true
@@ -140,7 +160,68 @@ KtKotlinPropertySymbol:
origin: SOURCE origin: SOURCE
receiverType: null receiverType: null
returnType: kotlin/Int returnType: kotlin/Int
setter: KtPropertySetterSymbol(<setter>) setter: KtPropertySetterSymbol:
annotationsList: [
SetAnnotation()
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
parameter: KtValueParameterSymbol:
annotationsList: [
SetparamAnnotation()
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
receiverType: null
returnType: kotlin/Unit
symbolKind: ACCESSOR
typeParameters: []
valueParameters: [
KtValueParameterSymbol:
annotationsList: [
SetparamAnnotation()
psi: KtAnnotationEntry
]
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: <set-?>
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
]
visibility: Public
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
visibility: Public visibility: Public
@@ -196,7 +277,24 @@ KtKotlinPropertySymbol:
] ]
callableIdIfNonLocal: /lazyProperty callableIdIfNonLocal: /lazyProperty
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /x callableIdIfNonLocal: /x
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -56,7 +73,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /y callableIdIfNonLocal: /y
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: kotlin/Int
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -2,7 +2,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /x callableIdIfNonLocal: /x
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -56,7 +73,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /y callableIdIfNonLocal: /y
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: true
hasStableParameterNames: true
isDefault: false
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: false hasBackingField: false
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -173,7 +173,26 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(arg) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: arg
origin: SOURCE
receiverType: null
returnType: [
Anno2()
psi: KtAnnotationEntry
] @R|Anno2|() I
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): X getDispatchReceiver(): X
@@ -184,7 +203,24 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /X.x callableIdIfNonLocal: /X.x
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -173,7 +173,26 @@ KtFunctionSymbol:
symbolKind: CLASS_MEMBER symbolKind: CLASS_MEMBER
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(arg) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: arg
origin: SOURCE
receiverType: null
returnType: [
Anno2()
psi: KtAnnotationEntry
] @R|Anno2|() I
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getDispatchReceiver(): X getDispatchReceiver(): X
@@ -184,7 +203,27 @@ KtKotlinPropertySymbol:
annotationsList: [] annotationsList: []
callableIdIfNonLocal: /X.x callableIdIfNonLocal: /X.x
contextReceivers: [] contextReceivers: []
getter: KtPropertyGetterSymbol(<getter>) getter: KtPropertyGetterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
hasBody: false
hasStableParameterNames: true
isDefault: true
isExtension: false
isInline: false
isOverride: false
modality: FINAL
origin: SOURCE
receiverType: null
returnType: [
Anno4()
psi: KtAnnotationEntry
] @R|Anno4|() I
symbolKind: ACCESSOR
typeParameters: []
valueParameters: []
visibility: Public
hasBackingField: true hasBackingField: true
hasGetter: true hasGetter: true
hasSetter: false hasSetter: false
@@ -80,10 +80,58 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(inlineParameter) KtValueParameterSymbol:
KtValueParameterSymbol(crossinlineParameter) annotationsList: []
KtValueParameterSymbol(noinlineParameter) callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: inlineParameter
origin: SOURCE
receiverType: null
returnType: kotlin/Function0<kotlin/Int>
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: true
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: crossinlineParameter
origin: SOURCE
receiverType: null
returnType: kotlin/Function0<kotlin/Int>
symbolKind: LOCAL
typeParameters: []
KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: true
isVararg: false
name: noinlineParameter
origin: SOURCE
receiverType: null
returnType: kotlin/Function0<kotlin/Int>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null deprecationStatus: null
@@ -40,7 +40,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(a) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: true
name: a
origin: SOURCE
receiverType: null
returnType: kotlin/Int
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -88,7 +104,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(b) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: true
name: b
origin: SOURCE
receiverType: null
returnType: kotlin/Float?
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -136,7 +168,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(c) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: true
name: c
origin: SOURCE
receiverType: null
returnType: kotlin/Any
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -184,7 +232,23 @@ KtFunctionSymbol:
symbolKind: TOP_LEVEL symbolKind: TOP_LEVEL
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(d) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: true
name: d
origin: SOURCE
receiverType: null
returnType: ERROR_TYPE
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
@@ -14,7 +14,23 @@ KtConstructorSymbol:
KtTypeParameterSymbol(E) KtTypeParameterSymbol(E)
] ]
valueParameters: [ valueParameters: [
KtValueParameterSymbol(c) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: c
origin: JAVA
receiverType: null
returnType: ft<kotlin/collections/MutableCollection<out ft<E & Any, E?>>, kotlin/collections/Collection<out ft<E & Any, E?>>?>
symbolKind: LOCAL
typeParameters: []
] ]
visibility: Public visibility: Public
getContainingModule: KtSdkModule "SDK jdk" getContainingModule: KtSdkModule "SDK jdk"
@@ -11,7 +11,23 @@ KtSamConstructorSymbol:
symbolKind: SAM_CONSTRUCTOR symbolKind: SAM_CONSTRUCTOR
typeParameters: [] typeParameters: []
valueParameters: [ valueParameters: [
KtValueParameterSymbol(function) KtValueParameterSymbol:
annotationsList: []
callableIdIfNonLocal: null
contextReceivers: []
generatedPrimaryConstructorProperty: null
hasDefaultValue: false
isCrossinline: false
isExtension: false
isImplicitLambdaParameter: false
isNoinline: false
isVararg: false
name: function
origin: SAM_CONSTRUCTOR
receiverType: null
returnType: kotlin/Function0<kotlin/Unit>
symbolKind: LOCAL
typeParameters: []
] ]
getContainingModule: KtSourceModule "Sources of main" getContainingModule: KtSourceModule "Sources of main"
deprecationStatus: null deprecationStatus: null