AA: render containing file and JvmClassName
This commit is contained in:
committed by
Space Team
parent
797174ee1f
commit
f5d2ce3022
-1
@@ -71,7 +71,6 @@ public class DebugSymbolRenderer(
|
|||||||
|
|
||||||
KtSymbolContainingDeclarationProviderMixIn::class
|
KtSymbolContainingDeclarationProviderMixIn::class
|
||||||
.declaredMemberExtensionFunctions
|
.declaredMemberExtensionFunctions
|
||||||
.filter { it.name == "getContainingModule" }
|
|
||||||
.filterNot {
|
.filterNot {
|
||||||
// Rendering a containing symbol is prone to stack overflow.
|
// Rendering a containing symbol is prone to stack overflow.
|
||||||
// * function symbol will render its value parameter symbol(s)
|
// * function symbol will render its value parameter symbol(s)
|
||||||
|
|||||||
-1
@@ -1,4 +1,3 @@
|
|||||||
expression: DOT_QUALIFIED_EXPRESSION
|
expression: DOT_QUALIFIED_EXPRESSION
|
||||||
text: this.length
|
text: this.length
|
||||||
isUsedAsExpression: true
|
isUsedAsExpression: true
|
||||||
|
|
||||||
|
|||||||
Vendored
+13
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -51,6 +53,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/C.bar
|
callableIdIfNonLocal: test/C.bar
|
||||||
@@ -80,6 +84,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -144,6 +152,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -173,6 +182,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -202,6 +212,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -226,5 +237,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+13
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/KotlinClass
|
type: test/KotlinClass
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
|
getContainingJvmClassName: test/KotlinClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -51,6 +53,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
|
getContainingJvmClassName: test/KotlinClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/KotlinClass.bar
|
callableIdIfNonLocal: test/KotlinClass.bar
|
||||||
@@ -80,6 +84,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/KotlinClass
|
type: test/KotlinClass
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
|
getContainingJvmClassName: test/KotlinClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/KotlinClass
|
type: test/KotlinClass
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
|
getContainingJvmClassName: test/KotlinClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -144,6 +152,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -173,6 +182,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -202,6 +212,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -226,5 +237,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
|
getContainingJvmClassName: test/KotlinClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
Vendored
+16
@@ -14,6 +14,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -33,6 +35,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -70,6 +74,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -121,10 +127,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -159,6 +169,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -192,6 +204,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -219,5 +233,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+24
@@ -14,6 +14,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -33,6 +35,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -53,6 +57,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int?
|
type: kotlin/Int?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -82,6 +88,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -114,6 +122,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -154,6 +164,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -191,6 +203,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -242,10 +256,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -280,6 +298,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -313,6 +333,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -340,5 +362,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+24
@@ -14,6 +14,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -33,6 +35,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -53,6 +57,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -82,6 +88,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -114,6 +122,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -154,6 +164,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -191,6 +203,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -242,10 +256,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -280,6 +298,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -313,6 +333,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -340,5 +362,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+8
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -103,5 +109,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+2
@@ -18,5 +18,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithEmptyBody.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+8
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -103,5 +109,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+8
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -103,5 +109,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
Vendored
+4
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -76,5 +78,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
|
getContainingJvmClassName: test/B
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
Vendored
+10
@@ -26,6 +26,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -62,6 +64,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -83,6 +87,8 @@ KtJavaFieldSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -111,6 +117,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -140,6 +147,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -164,5 +172,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+8
@@ -19,6 +19,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -44,6 +46,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -79,6 +83,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -102,5 +108,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+10
@@ -45,6 +45,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String!
|
type: kotlin/String!
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -53,6 +55,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -103,6 +107,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -111,6 +117,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -134,5 +142,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: PackageVisibility
|
visibility: PackageVisibility
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+4
@@ -36,6 +36,8 @@ KtConstructorSymbol:
|
|||||||
type: JavaClass!
|
type: JavaClass!
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass$InnerClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -44,5 +46,7 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass$InnerClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+9
@@ -51,10 +51,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Function0<kotlin/Int>
|
type: kotlin/Function0<kotlin/Int>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -84,6 +88,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -144,6 +152,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+10
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -51,6 +53,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/C.bar
|
callableIdIfNonLocal: test/C.bar
|
||||||
@@ -80,6 +84,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -139,5 +147,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+2
@@ -18,5 +18,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+10
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int?
|
type: kotlin/Int?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -116,6 +122,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -139,5 +147,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+10
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -116,6 +122,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -139,5 +147,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
analysis/analysis-api/testData/components/scopeProvider/declaredMemberScope/enumEntryInitializer.txt
Vendored
+8
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -103,5 +109,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+2
@@ -18,5 +18,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithEmptyBody.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+8
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -103,5 +109,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+8
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -103,5 +109,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+3
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -47,5 +48,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
|
getContainingJvmClassName: test/B
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+5
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -59,6 +61,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -83,5 +86,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+8
@@ -20,6 +20,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -44,6 +46,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -79,6 +83,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -102,5 +108,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+10
@@ -45,6 +45,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String!
|
type: kotlin/String!
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -53,6 +55,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -103,6 +107,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -111,6 +117,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -134,5 +142,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: PackageVisibility
|
visibility: PackageVisibility
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+4
@@ -36,6 +36,8 @@ KtConstructorSymbol:
|
|||||||
type: JavaClass!
|
type: JavaClass!
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass$InnerClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -44,5 +46,7 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass$InnerClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+8
@@ -51,10 +51,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Function0<kotlin/Int>
|
type: kotlin/Function0<kotlin/Int>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -84,6 +88,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
+8
@@ -51,10 +51,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Function0<kotlin/Int>
|
type: kotlin/Function0<kotlin/Int>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleScriptWithResultDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleScriptWithResultDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -84,6 +88,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleScriptWithResultDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleScriptWithResultDeclaration.kts)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
getContainingModule: KtScriptModule "Script simpleScriptWithResultDeclaration.kts"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
+6
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(propertyWithGetter.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /I.foo
|
callableIdIfNonLocal: /I.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(propertyWithGetter.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(propertyWithGetter.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
Vendored
+2
@@ -34,6 +34,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(propertyWithGetter.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
Vendored
+46
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Unit
|
type: kotlin/Unit
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /I.zoo
|
callableIdIfNonLocal: /I.zoo
|
||||||
@@ -39,6 +41,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -53,6 +56,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -80,6 +85,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -118,6 +124,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Unit
|
type: kotlin/Unit
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: KtReceiverParameterSymbol:
|
receiverParameter: KtReceiverParameterSymbol:
|
||||||
@@ -128,6 +136,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -157,6 +166,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Unit
|
type: kotlin/Unit
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -165,6 +176,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -174,6 +187,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -214,6 +229,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -245,6 +262,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -259,6 +277,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -279,6 +299,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /I.foo
|
callableIdIfNonLocal: /I.foo
|
||||||
@@ -308,6 +330,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -340,6 +364,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -364,6 +390,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /I.bar
|
callableIdIfNonLocal: /I.bar
|
||||||
@@ -393,6 +421,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -449,6 +479,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -479,6 +511,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -487,6 +521,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -496,6 +532,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -520,6 +558,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /I.doo
|
callableIdIfNonLocal: /I.doo
|
||||||
@@ -544,6 +584,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -558,6 +599,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -585,6 +628,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -599,6 +643,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
+15
@@ -29,6 +29,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -43,6 +44,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -83,6 +86,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -122,6 +127,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -157,6 +164,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -171,6 +179,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -210,6 +220,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -248,6 +260,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -262,6 +275,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simple.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
+4
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(withImplicitType.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -67,5 +69,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(withImplicitType.kt)
|
||||||
|
getContainingJvmClassName: I
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+4
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(withImplicitType.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -67,5 +69,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: A
|
type: A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(withImplicitType.kt)
|
||||||
|
getContainingJvmClassName: A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+2
@@ -31,5 +31,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: B
|
type: B
|
||||||
|
getContainingFileSymbol: KtFileSymbol(withOverridden.kt)
|
||||||
|
getContainingJvmClassName: I2
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+2
@@ -31,5 +31,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: B
|
type: B
|
||||||
|
getContainingFileSymbol: KtFileSymbol(withOverridden.kt)
|
||||||
|
getContainingJvmClassName: B
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+132
@@ -2,6 +2,7 @@ FILE SYMBOL:
|
|||||||
KtFileSymbol:
|
KtFileSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -38,6 +39,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -92,10 +95,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -116,6 +123,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /testVal
|
callableIdIfNonLocal: /testVal
|
||||||
@@ -141,6 +150,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -169,6 +180,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -193,6 +206,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /initializedVariable
|
callableIdIfNonLocal: /initializedVariable
|
||||||
@@ -218,6 +233,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -274,6 +291,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -304,15 +323,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -337,6 +362,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /unitializedVariable
|
callableIdIfNonLocal: /unitializedVariable
|
||||||
@@ -362,6 +389,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -418,6 +447,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -448,15 +479,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -481,6 +518,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /lateinitVariable
|
callableIdIfNonLocal: /lateinitVariable
|
||||||
@@ -506,6 +545,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -562,6 +603,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -592,15 +635,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -625,6 +674,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /variableWithBackingField
|
callableIdIfNonLocal: /variableWithBackingField
|
||||||
@@ -650,6 +701,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -706,6 +759,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -736,15 +791,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -769,6 +830,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /privateSetter
|
callableIdIfNonLocal: /privateSetter
|
||||||
@@ -794,6 +857,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -853,6 +918,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -883,15 +950,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -916,6 +989,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /jvmNameOnSetter
|
callableIdIfNonLocal: /jvmNameOnSetter
|
||||||
@@ -941,6 +1016,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1000,6 +1077,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -1030,15 +1109,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1063,6 +1148,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /customGetter
|
callableIdIfNonLocal: /customGetter
|
||||||
@@ -1091,6 +1178,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1119,6 +1208,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1143,6 +1234,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /jvmNameOnGetter
|
callableIdIfNonLocal: /jvmNameOnGetter
|
||||||
@@ -1171,6 +1264,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1199,6 +1294,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1223,6 +1320,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /propertyWithReceiver
|
callableIdIfNonLocal: /propertyWithReceiver
|
||||||
@@ -1247,6 +1346,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1257,6 +1357,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1284,6 +1386,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1294,6 +1397,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1318,6 +1423,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /propertyWithGenericReceiver
|
callableIdIfNonLocal: /propertyWithGenericReceiver
|
||||||
@@ -1341,6 +1448,7 @@ KtKotlinPropertySymbol:
|
|||||||
type: KtTypeParameterType:
|
type: KtTypeParameterType:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
type: T
|
type: T
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1351,6 +1459,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1377,6 +1487,7 @@ KtKotlinPropertySymbol:
|
|||||||
type: KtTypeParameterType:
|
type: KtTypeParameterType:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
type: T
|
type: T
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1389,6 +1500,8 @@ KtKotlinPropertySymbol:
|
|||||||
KtTypeParameterSymbol(T)
|
KtTypeParameterSymbol(T)
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1413,6 +1526,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /constant
|
callableIdIfNonLocal: /constant
|
||||||
@@ -1438,6 +1553,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1466,6 +1583,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1493,6 +1612,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /jvmField
|
callableIdIfNonLocal: /jvmField
|
||||||
@@ -1518,6 +1639,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1574,6 +1697,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -1604,15 +1729,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1649,6 +1780,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+132
@@ -2,6 +2,7 @@ FILE SYMBOL:
|
|||||||
KtFileSymbol:
|
KtFileSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -38,6 +39,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -92,10 +95,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -116,6 +123,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /testVal
|
callableIdIfNonLocal: /testVal
|
||||||
@@ -141,6 +150,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -169,6 +180,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -193,6 +206,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /initializedVariable
|
callableIdIfNonLocal: /initializedVariable
|
||||||
@@ -218,6 +233,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -274,6 +291,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -304,15 +323,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -337,6 +362,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /unitializedVariable
|
callableIdIfNonLocal: /unitializedVariable
|
||||||
@@ -362,6 +389,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -418,6 +447,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -448,15 +479,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -481,6 +518,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /lateinitVariable
|
callableIdIfNonLocal: /lateinitVariable
|
||||||
@@ -506,6 +545,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -562,6 +603,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -592,15 +635,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -625,6 +674,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /variableWithBackingField
|
callableIdIfNonLocal: /variableWithBackingField
|
||||||
@@ -650,6 +701,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -706,6 +759,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -736,15 +791,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -769,6 +830,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /privateSetter
|
callableIdIfNonLocal: /privateSetter
|
||||||
@@ -794,6 +857,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -853,6 +918,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -883,15 +950,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -916,6 +989,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /jvmNameOnSetter
|
callableIdIfNonLocal: /jvmNameOnSetter
|
||||||
@@ -941,6 +1016,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1000,6 +1077,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -1030,15 +1109,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1063,6 +1148,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /customGetter
|
callableIdIfNonLocal: /customGetter
|
||||||
@@ -1091,6 +1178,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1119,6 +1208,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1143,6 +1234,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /jvmNameOnGetter
|
callableIdIfNonLocal: /jvmNameOnGetter
|
||||||
@@ -1171,6 +1264,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1199,6 +1294,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1223,6 +1320,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /propertyWithReceiver
|
callableIdIfNonLocal: /propertyWithReceiver
|
||||||
@@ -1247,6 +1346,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1257,6 +1357,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1284,6 +1386,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1294,6 +1397,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1318,6 +1423,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /propertyWithGenericReceiver
|
callableIdIfNonLocal: /propertyWithGenericReceiver
|
||||||
@@ -1341,6 +1448,7 @@ KtKotlinPropertySymbol:
|
|||||||
type: KtTypeParameterType:
|
type: KtTypeParameterType:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
type: T
|
type: T
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1351,6 +1459,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -1377,6 +1487,7 @@ KtKotlinPropertySymbol:
|
|||||||
type: KtTypeParameterType:
|
type: KtTypeParameterType:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
type: T
|
type: T
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -1389,6 +1500,8 @@ KtKotlinPropertySymbol:
|
|||||||
KtTypeParameterSymbol(T)
|
KtTypeParameterSymbol(T)
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1413,6 +1526,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /constant
|
callableIdIfNonLocal: /constant
|
||||||
@@ -1438,6 +1553,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1466,6 +1583,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1493,6 +1612,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /jvmField
|
callableIdIfNonLocal: /jvmField
|
||||||
@@ -1518,6 +1639,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1574,6 +1697,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverParameter: null
|
receiverParameter: null
|
||||||
@@ -1604,15 +1729,21 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
|
getContainingJvmClassName: FileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1649,6 +1780,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(fileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+11
@@ -2,6 +2,7 @@ FILE SYMBOL:
|
|||||||
KtFileSymbol:
|
KtFileSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -38,6 +39,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleFileScope.kt)
|
||||||
|
getContainingJvmClassName: SimpleFileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -58,6 +61,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleFileScope.kt)
|
||||||
|
getContainingJvmClassName: SimpleFileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /testVal
|
callableIdIfNonLocal: /testVal
|
||||||
@@ -83,6 +88,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleFileScope.kt)
|
||||||
|
getContainingJvmClassName: SimpleFileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -111,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleFileScope.kt)
|
||||||
|
getContainingJvmClassName: SimpleFileScopeKt
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -147,6 +156,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleFileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -176,6 +186,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(simpleFileScope.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
analysis/analysis-api/testData/components/scopeProvider/importingScopeContext/errorImport.pretty.txt
Vendored
-1
@@ -19,4 +19,3 @@ scopes:
|
|||||||
classifiers: 0
|
classifiers: 0
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
Vendored
-1
@@ -19,4 +19,3 @@ scopes:
|
|||||||
classifiers: 0
|
classifiers: 0
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
analysis/analysis-api/testData/components/scopeProvider/importingScopeContext/importAlias.pretty.txt
Vendored
-1
@@ -20,4 +20,3 @@ scopes:
|
|||||||
class A
|
class A
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
Vendored
-1
@@ -19,4 +19,3 @@ scopes:
|
|||||||
classifiers: 0
|
classifiers: 0
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
Vendored
-1
@@ -19,4 +19,3 @@ scopes:
|
|||||||
classifiers: 0
|
classifiers: 0
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
-1
@@ -20,4 +20,3 @@ scopes:
|
|||||||
class A
|
class A
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
Vendored
-1
@@ -21,4 +21,3 @@ scopes:
|
|||||||
classifiers: 0
|
classifiers: 0
|
||||||
callables: 0
|
callables: 0
|
||||||
constructors: 0
|
constructors: 0
|
||||||
|
|
||||||
|
|||||||
@@ -49,6 +49,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -57,6 +59,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -111,6 +115,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -119,6 +125,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -173,6 +181,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -181,6 +191,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -235,6 +247,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Float
|
type: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -243,6 +257,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -297,6 +313,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -305,6 +323,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -359,6 +379,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -367,6 +389,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -421,6 +445,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -429,6 +455,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -465,6 +493,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -519,6 +549,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -527,6 +559,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -581,6 +615,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -589,6 +625,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -643,6 +681,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Float
|
type: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -651,6 +691,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -705,6 +747,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -713,6 +757,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -767,6 +813,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -775,6 +823,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -829,6 +879,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -837,6 +889,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -891,6 +945,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -899,6 +955,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -935,6 +993,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -974,6 +1034,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1028,6 +1090,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1036,6 +1100,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1090,6 +1156,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1098,6 +1166,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1152,6 +1222,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Float
|
type: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1160,6 +1232,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1214,6 +1288,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1222,6 +1298,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1276,6 +1354,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1284,6 +1364,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1338,6 +1420,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1346,6 +1430,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1400,6 +1486,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1408,6 +1496,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1462,6 +1552,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1470,6 +1562,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1524,6 +1618,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1532,6 +1628,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1586,6 +1684,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Float
|
type: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1594,6 +1694,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1648,6 +1750,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1656,6 +1760,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1710,6 +1816,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1718,6 +1826,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1772,6 +1882,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1780,6 +1892,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1831,6 +1945,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1839,6 +1955,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1890,6 +2008,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1898,6 +2018,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1949,6 +2071,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1957,6 +2081,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2008,6 +2134,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2016,6 +2144,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2072,6 +2202,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2080,6 +2212,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2136,6 +2270,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2144,6 +2280,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2200,6 +2338,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2208,6 +2348,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2264,6 +2406,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2272,6 +2416,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2328,6 +2474,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2336,6 +2484,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2392,6 +2542,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2400,6 +2552,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2456,6 +2610,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Float
|
type: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2464,6 +2620,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2520,6 +2678,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2528,6 +2688,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2584,6 +2746,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2592,6 +2756,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2648,6 +2814,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2656,6 +2824,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2710,6 +2880,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2718,6 +2890,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2772,6 +2946,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2780,6 +2956,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2834,6 +3012,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Byte
|
type: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2842,6 +3022,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2896,6 +3078,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2904,6 +3088,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -2958,6 +3144,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Float
|
type: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -2966,6 +3154,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3020,6 +3210,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -3028,6 +3220,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3082,6 +3276,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -3090,6 +3286,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3144,6 +3342,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Short
|
type: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -3152,6 +3352,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3191,6 +3393,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3230,6 +3434,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3269,6 +3475,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3308,6 +3516,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3347,6 +3557,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3386,6 +3598,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3425,6 +3639,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3464,6 +3680,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3503,6 +3721,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3542,6 +3762,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3596,6 +3818,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -3604,6 +3828,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3658,6 +3884,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -3666,6 +3894,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3702,6 +3932,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -3730,6 +3962,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -3754,5 +3987,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Int
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+94
@@ -45,6 +45,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -57,6 +59,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -108,6 +112,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -129,6 +135,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -141,6 +149,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -192,6 +202,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -218,6 +230,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -230,6 +244,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -285,6 +301,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -297,6 +315,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -337,6 +357,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -381,6 +403,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -436,6 +460,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -448,6 +474,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -498,6 +526,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -510,6 +540,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -565,6 +597,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -577,6 +611,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -627,6 +663,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -639,6 +677,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -694,6 +734,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -706,6 +748,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -756,6 +800,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -777,6 +823,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -789,6 +837,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -844,6 +894,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -866,6 +918,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -878,6 +932,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -898,6 +954,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/collections/List.size
|
callableIdIfNonLocal: kotlin/collections/List.size
|
||||||
@@ -931,6 +989,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/List<E>
|
type: kotlin/collections/List<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -967,6 +1027,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/List<E>
|
type: kotlin/collections/List<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1011,6 +1073,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/List<E>
|
type: kotlin/collections/List<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1061,6 +1125,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1073,6 +1139,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1117,6 +1185,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1172,6 +1242,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1184,6 +1256,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1234,6 +1308,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1246,6 +1322,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1296,6 +1374,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1308,6 +1388,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1358,6 +1440,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1370,6 +1454,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1421,6 +1507,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1429,6 +1517,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1465,6 +1555,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1501,5 +1593,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+92
@@ -45,6 +45,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -57,6 +59,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -108,6 +112,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -129,6 +135,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -141,6 +149,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -192,6 +202,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -218,6 +230,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -230,6 +244,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -285,6 +301,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -297,6 +315,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -337,6 +357,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -381,6 +403,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -436,6 +460,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -448,6 +474,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -498,6 +526,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -510,6 +540,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -565,6 +597,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -577,6 +611,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -627,6 +663,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -639,6 +677,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -694,6 +734,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -706,6 +748,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -756,6 +800,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -777,6 +823,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -789,6 +837,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -844,6 +894,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -866,6 +918,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -878,6 +932,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -898,6 +954,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/collections/List.size
|
callableIdIfNonLocal: kotlin/collections/List.size
|
||||||
@@ -937,6 +995,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/List<E>
|
type: kotlin/collections/List<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -981,6 +1041,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/List<E>
|
type: kotlin/collections/List<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/List
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1031,6 +1093,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1043,6 +1107,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1087,6 +1153,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1142,6 +1210,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/collections/Collection<E>
|
type: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1154,6 +1224,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1204,6 +1276,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1216,6 +1290,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1266,6 +1342,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1278,6 +1356,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1328,6 +1408,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1340,6 +1422,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/collections/MutableList<E>
|
type: kotlin/collections/MutableList<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/collections/MutableList
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1391,6 +1475,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -1399,6 +1485,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1435,6 +1523,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -1471,5 +1561,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+31
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -51,6 +53,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/C.bar
|
callableIdIfNonLocal: test/C.bar
|
||||||
@@ -80,6 +84,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -112,6 +118,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/C
|
type: test/C
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -152,6 +160,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/A
|
type: test/A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -172,6 +182,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/A.x
|
callableIdIfNonLocal: test/A.x
|
||||||
@@ -201,6 +213,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/A
|
type: test/A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -233,6 +247,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/A
|
type: test/A
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/A
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -288,6 +304,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -296,6 +314,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -332,6 +352,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -368,6 +390,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -396,6 +420,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -425,6 +450,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -454,6 +480,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -483,6 +510,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -512,6 +540,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -536,5 +565,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
|
getContainingJvmClassName: test/C
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+76
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.firstProperty
|
callableIdIfNonLocal: /Abc.firstProperty
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -100,6 +106,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.secondProperty
|
callableIdIfNonLocal: /Abc.secondProperty
|
||||||
@@ -129,6 +137,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -161,6 +171,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -185,6 +197,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.thirdProperty
|
callableIdIfNonLocal: /Abc.thirdProperty
|
||||||
@@ -214,6 +228,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -246,6 +262,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -286,6 +304,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -306,6 +326,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Long
|
type: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.bodyProperty
|
callableIdIfNonLocal: /Abc.bodyProperty
|
||||||
@@ -330,6 +352,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -340,6 +363,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -367,6 +392,7 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
returnType: KtUsualClassType:
|
returnType: KtUsualClassType:
|
||||||
@@ -381,6 +407,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -421,6 +449,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -457,6 +487,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -493,6 +525,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -544,6 +578,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -566,6 +602,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -588,6 +626,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -596,6 +636,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -647,6 +689,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -655,6 +699,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -691,6 +737,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -727,6 +775,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -770,6 +820,8 @@ KtConstructorSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.firstProperty
|
callableIdIfNonLocal: /Abc.firstProperty
|
||||||
@@ -799,6 +851,8 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -831,6 +885,8 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -852,6 +908,8 @@ KtConstructorSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -875,6 +933,8 @@ KtConstructorSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.secondProperty
|
callableIdIfNonLocal: /Abc.secondProperty
|
||||||
@@ -904,6 +964,8 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -936,6 +998,8 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -957,6 +1021,8 @@ KtConstructorSymbol:
|
|||||||
type: kotlin/Double
|
type: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -980,6 +1046,8 @@ KtConstructorSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: /Abc.thirdProperty
|
callableIdIfNonLocal: /Abc.thirdProperty
|
||||||
@@ -1009,6 +1077,8 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -1041,6 +1111,8 @@ KtConstructorSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: Abc
|
type: Abc
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -1062,9 +1134,13 @@ KtConstructorSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(dataClass.kt)
|
||||||
|
getContainingJvmClassName: Abc
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+33
@@ -35,6 +35,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -86,6 +88,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -94,6 +98,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -145,6 +151,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -157,6 +165,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -197,6 +207,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -237,6 +249,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -260,6 +274,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -293,6 +309,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -329,6 +347,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -353,6 +373,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -386,6 +408,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -422,6 +446,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -461,6 +487,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -501,6 +529,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -529,6 +559,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -553,5 +584,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+29
@@ -35,6 +35,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -86,6 +88,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -94,6 +98,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -145,6 +151,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -157,6 +165,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -197,6 +207,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -237,6 +249,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -260,6 +274,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -299,6 +315,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -323,6 +341,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -362,6 +382,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -401,6 +423,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -441,6 +465,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -469,6 +495,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -493,5 +520,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+41
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int?
|
type: kotlin/Int?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -116,6 +122,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -156,6 +164,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -207,6 +217,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -215,6 +227,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -266,6 +280,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -278,6 +294,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -318,6 +336,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -358,6 +378,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -381,6 +403,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -414,6 +438,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -450,6 +476,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -474,6 +502,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -507,6 +537,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -543,6 +575,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -582,6 +616,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -622,6 +658,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -650,6 +688,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -674,5 +713,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
analysis/analysis-api/testData/components/scopeProvider/memberScope/enumClassWithAbstractMembers.txt
Vendored
+37
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int?
|
type: kotlin/Int?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -116,6 +122,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -156,6 +164,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -207,6 +217,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -215,6 +227,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -266,6 +280,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -278,6 +294,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -318,6 +336,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -358,6 +378,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -381,6 +403,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -420,6 +444,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -444,6 +470,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -483,6 +511,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -522,6 +552,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -562,6 +594,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -590,6 +624,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -614,5 +649,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithAbstractMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+41
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -116,6 +122,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -156,6 +164,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -207,6 +217,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -215,6 +227,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -266,6 +280,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -278,6 +294,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -318,6 +336,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -358,6 +378,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -381,6 +403,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -414,6 +438,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -450,6 +476,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -474,6 +502,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -507,6 +537,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -543,6 +575,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -582,6 +616,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -622,6 +658,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -650,6 +688,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -674,5 +713,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+37
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -116,6 +122,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -156,6 +164,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -207,6 +217,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -215,6 +227,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -266,6 +280,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -278,6 +294,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -318,6 +336,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -358,6 +378,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -381,6 +403,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -420,6 +444,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -444,6 +470,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -483,6 +511,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -522,6 +552,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -562,6 +594,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -590,6 +624,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -614,5 +649,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClassWithFinalMembers.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+39
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -120,6 +126,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -171,6 +179,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -179,6 +189,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -230,6 +242,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -242,6 +256,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -282,6 +298,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -322,6 +340,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -345,6 +365,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -378,6 +400,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -414,6 +438,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -438,6 +464,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -471,6 +499,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -507,6 +537,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -546,6 +578,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -586,6 +620,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -614,6 +650,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -638,5 +675,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+35
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -120,6 +126,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -171,6 +179,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -179,6 +189,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -230,6 +242,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -242,6 +256,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -282,6 +298,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -322,6 +340,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -345,6 +365,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -384,6 +406,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -408,6 +432,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -447,6 +473,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -486,6 +514,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -526,6 +556,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -554,6 +586,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -578,5 +611,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializer.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+45
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -100,6 +106,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -129,6 +137,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -161,6 +171,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -205,6 +217,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -256,6 +270,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -264,6 +280,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -315,6 +333,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -327,6 +347,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -367,6 +389,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -407,6 +431,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -430,6 +456,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -463,6 +491,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -499,6 +529,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -523,6 +555,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -556,6 +590,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -592,6 +628,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -631,6 +669,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -671,6 +711,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -699,6 +741,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -723,5 +766,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+41
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -100,6 +106,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: test/E.foo
|
callableIdIfNonLocal: test/E.foo
|
||||||
@@ -129,6 +137,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -161,6 +171,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -205,6 +217,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -256,6 +270,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -264,6 +280,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -315,6 +333,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -327,6 +347,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -367,6 +389,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -407,6 +431,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -430,6 +456,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -469,6 +497,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -493,6 +523,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -532,6 +564,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -571,6 +605,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -611,6 +647,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -639,6 +677,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -663,5 +702,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithFinalEnumMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+39
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -120,6 +126,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -171,6 +179,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -179,6 +189,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -230,6 +242,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -242,6 +256,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -282,6 +298,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -322,6 +340,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -345,6 +365,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -378,6 +400,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -414,6 +438,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -438,6 +464,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -471,6 +499,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -507,6 +537,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -546,6 +578,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -586,6 +620,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -614,6 +650,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -638,5 +675,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+35
@@ -15,6 +15,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: null
|
callableIdIfNonLocal: null
|
||||||
@@ -44,6 +46,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: true
|
hasBackingField: true
|
||||||
@@ -76,6 +80,8 @@ KtKotlinPropertySymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/<anonymous>
|
type: test/<anonymous>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -120,6 +126,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -171,6 +179,8 @@ KtFunctionSymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -179,6 +189,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -230,6 +242,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -242,6 +256,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -282,6 +298,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -322,6 +340,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -345,6 +365,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.name
|
callableIdIfNonLocal: kotlin/Enum.name
|
||||||
@@ -384,6 +406,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -408,6 +432,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
callableIdIfNonLocal: kotlin/Enum.ordinal
|
callableIdIfNonLocal: kotlin/Enum.ordinal
|
||||||
@@ -447,6 +473,8 @@ KtKotlinPropertySymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
@@ -486,6 +514,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/E
|
type: test/E
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -526,6 +556,8 @@ KtFunctionSymbol:
|
|||||||
type: E
|
type: E
|
||||||
]
|
]
|
||||||
type: kotlin/Enum<E>
|
type: kotlin/Enum<E>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Enum
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -554,6 +586,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -578,5 +611,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumEntryInitializerWithOverriddenMember.kt)
|
||||||
|
getContainingJvmClassName: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+14
@@ -46,6 +46,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -54,6 +56,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -90,6 +94,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -126,6 +132,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -154,6 +162,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -183,6 +192,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -212,6 +222,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -241,6 +252,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -265,5 +277,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
|
getContainingJvmClassName: test/B
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+379
File diff suppressed because it is too large
Load Diff
+22
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -83,6 +85,8 @@ KtFunctionSymbol:
|
|||||||
type: ft<java/lang/Class<out ft<T & Any, T?>>, java/lang/Class<out ft<T & Any, T?>>?>
|
type: ft<java/lang/Class<out ft<T & Any, T?>>, java/lang/Class<out ft<T & Any, T?>>?>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -91,6 +95,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -130,6 +136,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: SuperClass
|
type: SuperClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: SuperClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -181,6 +189,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -189,6 +199,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -225,6 +237,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -261,6 +275,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -289,6 +305,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -318,6 +335,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -347,6 +365,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -376,6 +395,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -400,5 +420,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+14
@@ -20,6 +20,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -44,6 +46,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -95,6 +99,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -103,6 +109,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -139,6 +147,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -175,6 +185,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -198,5 +210,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+14
@@ -20,6 +20,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -44,6 +46,8 @@ KtJavaFieldSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -95,6 +99,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -103,6 +109,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -139,6 +147,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -175,6 +185,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -198,5 +210,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+18
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -81,6 +83,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Int
|
type: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -89,6 +93,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -124,6 +130,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: JavaClass
|
type: JavaClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -175,6 +183,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -183,6 +193,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -219,6 +231,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -255,6 +269,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -278,5 +294,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+14
@@ -44,6 +44,8 @@ KtFunctionSymbol:
|
|||||||
type: P1
|
type: P1
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Function2
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -65,6 +67,8 @@ KtFunctionSymbol:
|
|||||||
type: P2
|
type: P2
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Function2
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -83,6 +87,8 @@ KtFunctionSymbol:
|
|||||||
type: R
|
type: R
|
||||||
]
|
]
|
||||||
type: kotlin/Function2<P1, P2, R>
|
type: kotlin/Function2<P1, P2, R>
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Function2
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -134,6 +140,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -142,6 +150,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -178,6 +188,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -214,5 +226,7 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+42
@@ -35,6 +35,8 @@ KtFunctionSymbol:
|
|||||||
type: T
|
type: T
|
||||||
]
|
]
|
||||||
type: test/Base<T>
|
type: test/Base<T>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/Base
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -75,6 +77,8 @@ KtFunctionSymbol:
|
|||||||
type: T
|
type: T
|
||||||
]
|
]
|
||||||
type: test/Base<T>
|
type: test/Base<T>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/Base
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -126,6 +130,8 @@ KtFunctionSymbol:
|
|||||||
type: test/Foo
|
type: test/Foo
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -134,6 +140,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/ClassWithGenericBase
|
type: test/ClassWithGenericBase
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -185,6 +193,8 @@ KtFunctionSymbol:
|
|||||||
type: test/Foo
|
type: test/Foo
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -193,6 +203,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/ClassWithGenericBase
|
type: test/ClassWithGenericBase
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -245,6 +257,8 @@ KtFunctionSymbol:
|
|||||||
type: TT
|
type: TT
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/Base
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -257,6 +271,8 @@ KtFunctionSymbol:
|
|||||||
type: T
|
type: T
|
||||||
]
|
]
|
||||||
type: test/Base<T>
|
type: test/Base<T>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/Base
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -309,6 +325,8 @@ KtFunctionSymbol:
|
|||||||
type: TT
|
type: TT
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/Base
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -321,6 +339,8 @@ KtFunctionSymbol:
|
|||||||
type: T
|
type: T
|
||||||
]
|
]
|
||||||
type: test/Base<T>
|
type: test/Base<T>
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/Base
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -374,6 +394,8 @@ KtFunctionSymbol:
|
|||||||
type: test/Foo
|
type: test/Foo
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -395,6 +417,8 @@ KtFunctionSymbol:
|
|||||||
type: TT
|
type: TT
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -403,6 +427,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/ClassWithGenericBase
|
type: test/ClassWithGenericBase
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -456,6 +482,8 @@ KtFunctionSymbol:
|
|||||||
type: test/Foo
|
type: test/Foo
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
KtValueParameterSymbol:
|
KtValueParameterSymbol:
|
||||||
@@ -477,6 +505,8 @@ KtFunctionSymbol:
|
|||||||
type: TT
|
type: TT
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -485,6 +515,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/ClassWithGenericBase
|
type: test/ClassWithGenericBase
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -536,6 +568,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -544,6 +578,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -580,6 +616,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -616,6 +654,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -639,5 +679,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(substitutionOverride.kt)
|
||||||
|
getContainingJvmClassName: test/ClassWithGenericBase
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+18
@@ -46,6 +46,8 @@ KtFunctionSymbol:
|
|||||||
type: test/FirstTarget
|
type: test/FirstTarget
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/Serializer
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -54,6 +56,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/Serializer
|
type: test/Serializer
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/Serializer
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -105,6 +109,8 @@ KtFunctionSymbol:
|
|||||||
type: test/SecondTarget
|
type: test/SecondTarget
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/Serializer
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -113,6 +119,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/Serializer
|
type: test/Serializer
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/Serializer
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -164,6 +172,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -172,6 +182,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -208,6 +220,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -244,6 +258,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -267,5 +283,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(customSerlializable.kt)
|
||||||
|
getContainingJvmClassName: test/Serializer
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+12
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/WithGeneratedCompanion.Companion
|
type: test/WithGeneratedCompanion.Companion
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/WithGeneratedCompanion$Companion
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -82,6 +84,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -90,6 +94,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -126,6 +132,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -162,6 +170,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -185,5 +195,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Private
|
visibility: Private
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/WithGeneratedCompanion$Companion
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+13
@@ -31,6 +31,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: test/MyClass
|
type: test/MyClass
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: test/MyClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -82,6 +84,8 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/Any?
|
type: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
@@ -90,6 +94,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -126,6 +132,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -162,6 +170,8 @@ KtFunctionSymbol:
|
|||||||
annotationsList: []
|
annotationsList: []
|
||||||
ownTypeArguments: []
|
ownTypeArguments: []
|
||||||
type: kotlin/Any
|
type: kotlin/Any
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: kotlin/Any
|
||||||
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
getContainingModule: KtBinaryModule "Builtins for JVM (1.8)"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -190,6 +200,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -214,5 +225,7 @@ KtConstructorSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(nestedClassAndMaterializeMember.kt)
|
||||||
|
getContainingJvmClassName: test/MyClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
Vendored
+3
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -81,6 +83,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+3
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -81,6 +83,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
Vendored
+14
@@ -14,6 +14,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -33,6 +35,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -70,6 +74,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -121,10 +127,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -159,6 +169,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -192,6 +204,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
Vendored
+2
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
Vendored
+6
@@ -26,6 +26,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -47,6 +49,8 @@ KtJavaFieldSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -75,6 +79,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -104,6 +109,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
+1
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(scriptWithClassDeclaration.kts)
|
||||||
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
getContainingModule: KtScriptModule "Script scriptWithClassDeclaration.kts"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+3
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -81,6 +83,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(class.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+3
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -81,6 +83,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(KotlinClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+14
@@ -14,6 +14,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -33,6 +35,8 @@ KtEnumEntrySymbol:
|
|||||||
type: test/E
|
type: test/E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -70,6 +74,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -121,10 +127,14 @@ KtFunctionSymbol:
|
|||||||
type: kotlin/String
|
type: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
]
|
]
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -159,6 +169,8 @@ KtKotlinPropertySymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
hasBackingField: false
|
hasBackingField: false
|
||||||
@@ -192,6 +204,8 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(enumClass.kt)
|
||||||
|
getContainingJvmClassName: test/E
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
getterDeprecationStatus: null
|
getterDeprecationStatus: null
|
||||||
|
|||||||
+2
@@ -23,6 +23,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -52,6 +53,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: KtFileSymbol(innerClass.kt)
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|||||||
+10
@@ -26,6 +26,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -47,6 +49,8 @@ KtJavaFieldSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: SuperClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -78,6 +82,8 @@ KtFunctionSymbol:
|
|||||||
typeParameters: []
|
typeParameters: []
|
||||||
valueParameters: []
|
valueParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: SuperClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -99,6 +105,8 @@ KtJavaFieldSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
|
getContainingJvmClassName: JavaClass
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
|
|
||||||
@@ -127,6 +135,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
@@ -156,6 +165,7 @@ KtNamedClassOrObjectSymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
getContainingFileSymbol: null
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
annotationApplicableTargets: null
|
annotationApplicableTargets: null
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
-1
@@ -14,4 +14,3 @@ fun fromSuper(): O
|
|||||||
fun equals(other: kotlin.Any?): kotlin.Boolean
|
fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||||
fun hashCode(): kotlin.Int
|
fun hashCode(): kotlin.Int
|
||||||
fun toString(): kotlin.String
|
fun toString(): kotlin.String
|
||||||
|
|
||||||
|
|||||||
-1
@@ -30,4 +30,3 @@ val size: kotlin.Int
|
|||||||
fun equals(other: kotlin.Any?): kotlin.Boolean
|
fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||||
fun hashCode(): kotlin.Int
|
fun hashCode(): kotlin.Int
|
||||||
fun toString(): kotlin.String
|
fun toString(): kotlin.String
|
||||||
|
|
||||||
|
|||||||
-1
@@ -12,4 +12,3 @@ val map: kotlin.collections.Map<X, O>
|
|||||||
fun equals(other: kotlin.Any?): kotlin.Boolean
|
fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||||
fun hashCode(): kotlin.Int
|
fun hashCode(): kotlin.Int
|
||||||
fun toString(): kotlin.String
|
fun toString(): kotlin.String
|
||||||
|
|
||||||
|
|||||||
-1
@@ -12,4 +12,3 @@ val map: kotlin.collections.Map<X, kotlin.String>
|
|||||||
fun equals(other: kotlin.Any?): kotlin.Boolean
|
fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||||
fun hashCode(): kotlin.Int
|
fun hashCode(): kotlin.Int
|
||||||
fun toString(): kotlin.String
|
fun toString(): kotlin.String
|
||||||
|
|
||||||
|
|||||||
Vendored
-1
@@ -400,4 +400,3 @@ KtKotlinPropertySymbol:
|
|||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
visibility: Public
|
visibility: Public
|
||||||
|
|
||||||
|
|||||||
-1
@@ -30,4 +30,3 @@ val size: kotlin.Int
|
|||||||
fun equals(other: kotlin.Any?): kotlin.Boolean
|
fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||||
fun hashCode(): kotlin.Int
|
fun hashCode(): kotlin.Int
|
||||||
fun toString(): kotlin.String
|
fun toString(): kotlin.String
|
||||||
|
|
||||||
|
|||||||
-1
@@ -9,4 +9,3 @@ kotlin.Any
|
|||||||
|
|
||||||
[approximated all super types]
|
[approximated all super types]
|
||||||
kotlin.Any
|
kotlin.Any
|
||||||
|
|
||||||
|
|||||||
-1
@@ -21,4 +21,3 @@ kotlin.collections.Collection<kotlin.Any?>
|
|||||||
kotlin.collections.MutableIterable<kotlin.Any?>
|
kotlin.collections.MutableIterable<kotlin.Any?>
|
||||||
kotlin.collections.Iterable<kotlin.Any?>
|
kotlin.collections.Iterable<kotlin.Any?>
|
||||||
kotlin.Any
|
kotlin.Any
|
||||||
|
|
||||||
|
|||||||
-1
@@ -21,4 +21,3 @@ kotlin.collections.Collection<kotlin.String>
|
|||||||
kotlin.collections.MutableIterable<kotlin.String>
|
kotlin.collections.MutableIterable<kotlin.String>
|
||||||
kotlin.collections.Iterable<kotlin.String>
|
kotlin.collections.Iterable<kotlin.String>
|
||||||
kotlin.Any
|
kotlin.Any
|
||||||
|
|
||||||
|
|||||||
-1
@@ -29,4 +29,3 @@ kotlin.collections.Iterable<kotlin.String!>?
|
|||||||
kotlin.collections.Iterable<kotlin.String!>
|
kotlin.collections.Iterable<kotlin.String!>
|
||||||
kotlin.Any?
|
kotlin.Any?
|
||||||
kotlin.Any
|
kotlin.Any
|
||||||
|
|
||||||
|
|||||||
-1
@@ -47,4 +47,3 @@ class D
|
|||||||
fun baz()
|
fun baz()
|
||||||
|
|
||||||
var m: kotlin.Int
|
var m: kotlin.Int
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user