implement KtSymbolWithTypeParameters interface for KtPropertySymbol

This commit is contained in:
Jiaxiang Chen
2021-11-14 22:46:05 -08:00
committed by Ilya Kirillov
parent 30ceb49442
commit f8262a2549
31 changed files with 86 additions and 8 deletions
@@ -57,6 +57,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -558,6 +558,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): kotlin/collections/MutableList<E>
deprecationStatus: null
@@ -89,6 +89,7 @@ KtSyntheticJavaPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): java/lang/String
deprecationStatus: null
@@ -53,6 +53,10 @@ KtKotlinPropertySymbol:
receiverType: [] test/TwoParams<TT1, TT2>
setter: null
symbolKind: CLASS_MEMBER
typeParameters: [
KtTypeParameterSymbol(TT1)
KtTypeParameterSymbol(TT2)
]
visibility: Public
getDispatchReceiver(): test/MyClass
deprecationStatus: null
@@ -47,6 +47,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): <no name provided>
deprecationStatus: null
@@ -92,6 +93,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): AnonymousContainer
deprecationStatus: null
@@ -47,6 +47,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): <anonymous>
deprecationStatus: null
@@ -92,6 +93,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): AnonymousContainer
deprecationStatus: null
@@ -77,6 +77,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
deprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
deprecationStatus: null
@@ -118,6 +118,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
deprecationStatus: null
@@ -161,6 +162,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
deprecationStatus: null
@@ -193,6 +195,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
deprecationStatus: null
@@ -118,6 +118,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
deprecationStatus: null
@@ -161,6 +162,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
deprecationStatus: null
@@ -193,6 +195,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Some
deprecationStatus: null
@@ -27,6 +27,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i)
@@ -58,6 +59,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use getter of i2)
@@ -89,6 +91,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -120,6 +123,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use getter of i4)
@@ -212,6 +216,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
deprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i2)
@@ -301,6 +306,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=ERROR, propagatesToOverrides=true, message=don't use j)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=ERROR, propagatesToOverrides=true, message=don't use j)
@@ -337,6 +343,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=HIDDEN, propagatesToOverrides=true, message=don't use j2)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=HIDDEN, propagatesToOverrides=true, message=don't use j2)
@@ -368,6 +375,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=false, message=null)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=false, message=null)
@@ -27,6 +27,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i)
@@ -58,6 +59,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use getter of i2)
@@ -89,6 +91,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -120,6 +123,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use getter of i4)
@@ -212,6 +216,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
deprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i2)
@@ -301,6 +306,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=ERROR, propagatesToOverrides=true, message=null)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=ERROR, propagatesToOverrides=true, message=null)
@@ -337,6 +343,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=HIDDEN, propagatesToOverrides=true, message=null)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=HIDDEN, propagatesToOverrides=true, message=null)
@@ -373,6 +380,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=false, message=null)
getterDeprecationStatus: DeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=false, message=null)
@@ -75,6 +75,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Style.SHEET
deprecationStatus: null
@@ -118,6 +119,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Style
deprecationStatus: null
@@ -74,6 +74,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): <anonymous>
deprecationStatus: null
@@ -117,6 +118,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Style
deprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
deprecationStatus: null
@@ -121,6 +122,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
deprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
deprecationStatus: null
@@ -119,6 +120,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: KtPropertySetterSymbol(<setter>)
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): Foo
deprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
deprecationStatus: null
@@ -74,6 +75,7 @@ KtKotlinPropertySymbol:
receiverType: [] kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
deprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
deprecationStatus: null
@@ -73,6 +74,7 @@ KtKotlinPropertySymbol:
receiverType: [] kotlin/Int
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): A
deprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -72,6 +73,7 @@ KtKotlinPropertySymbol:
receiverType: [] kotlin/Int
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -22,6 +22,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -72,6 +73,7 @@ KtKotlinPropertySymbol:
receiverType: [] kotlin/Int
setter: null
symbolKind: TOP_LEVEL
typeParameters: []
visibility: Public
deprecationStatus: null
getterDeprecationStatus: null
@@ -202,6 +202,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): X
deprecationStatus: null
@@ -202,6 +202,7 @@ KtKotlinPropertySymbol:
receiverType: null
setter: null
symbolKind: CLASS_MEMBER
typeParameters: []
visibility: Public
getDispatchReceiver(): X
deprecationStatus: null