[FIR IDE] Update Analysis API test data, untie it from the FIR implementation
This commit is contained in:
committed by
teamcityserver
parent
516dd825c2
commit
1272c6aa33
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { Annotation("v1", "v2") -> (vararg elements: Annotation), Annotation(strings = arrayOf("v3", "v4")) -> (vararg elements: Annotation) }
|
||||
targetFunction = kotlin/arrayOf(vararg elements: Annotation): kotlin.Array<Annotation>
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol T=Annotation}>
|
||||
substitutor = <map substitutor: {T = Annotation}>
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { 1 -> (vararg elements: kotlin.Int), 2 -> (vararg elements: kotlin.Int), 3 -> (vararg elements: kotlin.Int) }
|
||||
targetFunction = kotlin/arrayOf(vararg elements: kotlin.Int): kotlin.Array<kotlin.Int>
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol T=kotlin/Int}>
|
||||
substitutor = <map substitutor: {T = kotlin/Int}>
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { 1 -> (a: kotlin.Int) }
|
||||
targetFunction = /function(<extension receiver>: kotlin.String, a: kotlin.Int): kotlin.Unit
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol A=kotlin/String, FirTypeParameterSymbol B=kotlin/Int}>
|
||||
substitutor = <map substitutor: {A = kotlin/String, B = kotlin/Int}>
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { 1 -> (a: kotlin.Int), "" -> (b: kotlin.String) }
|
||||
targetFunction = /function(a: kotlin.Int, b: kotlin.String): kotlin.Unit
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol A=kotlin/Int, FirTypeParameterSymbol B=kotlin/String}>
|
||||
substitutor = <map substitutor: {A = kotlin/Int, B = kotlin/String}>
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { 1 -> (r: kotlin.Int) }
|
||||
targetFunction = /A.foo(<dispatch receiver>: A<kotlin.String>, r: kotlin.Int): kotlin.Unit
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol R=kotlin/Int}>
|
||||
substitutor = <map substitutor: {R = kotlin/Int}>
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { 2 -> (other: kotlin.Int) }
|
||||
targetFunction = /to(<extension receiver>: kotlin.Int, other: kotlin.Int): kotlin.Int
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol A=kotlin/Int, FirTypeParameterSymbol B=kotlin/Int}>
|
||||
substitutor = <map substitutor: {A = kotlin/Int, B = kotlin/Int}>
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
KtFunctionCall:
|
||||
argumentMapping = { {x: Int, y: Int -> 1} -> (function: kotlin.Function2<ft<kotlin.Int, kotlin.Int?>, ft<kotlin.Int, kotlin.Int?>, kotlin.Int>) }
|
||||
targetFunction = java/util/Comparator(function: kotlin.Function2<ft<kotlin.Int, kotlin.Int?>, ft<kotlin.Int, kotlin.Int?>, kotlin.Int>): java.util.Comparator<ft<kotlin.Int, kotlin.Int?>>
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol T=ft<kotlin/Int, kotlin/Int?>}>
|
||||
substitutor = <map substitutor: {T = ft<kotlin/Int, kotlin/Int?>}>
|
||||
+1
-1
@@ -2,4 +2,4 @@ KtVariableWithInvokeFunctionCall:
|
||||
target = f: Foo
|
||||
argumentMapping = { "" -> (t: kotlin.String) }
|
||||
targetFunction = /invoke(<extension receiver>: Foo, t: kotlin.String): kotlin.Unit
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol T=kotlin/String}>
|
||||
substitutor = <map substitutor: {T = kotlin/String}>
|
||||
+1
-1
@@ -2,4 +2,4 @@ KtVariableWithInvokeFunctionCall:
|
||||
target = f: Foo
|
||||
argumentMapping = { "" -> (t: kotlin.String) }
|
||||
targetFunction = /Foo.invoke(<dispatch receiver>: Foo, t: kotlin.String): kotlin.Unit
|
||||
substitutor = <map substitutor: {FirTypeParameterSymbol T=kotlin/String}>
|
||||
substitutor = <map substitutor: {T = kotlin/String}>
|
||||
+1
-1
@@ -2,8 +2,8 @@
|
||||
@base annotation class derived
|
||||
@base class correct {
|
||||
constructor(@base x: Int)
|
||||
@base val x: Int
|
||||
@base constructor()
|
||||
@base val x: Int
|
||||
}
|
||||
@base enum class My {
|
||||
FIRST,
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
interface MyRwProperty<in T, V> {
|
||||
operator fun setValue(thisRef: T, property: Any, value: V)
|
||||
operator fun getValue(thisRef: T, property: Any): V
|
||||
operator fun setValue(thisRef: T, property: Any, value: V)
|
||||
}
|
||||
val x: Int
|
||||
get()
|
||||
|
||||
+1
-1
@@ -8,9 +8,9 @@ enum class Planet {
|
||||
VENERA,
|
||||
EARTH,
|
||||
constructor(m: Double, r: Double)
|
||||
val g: Double
|
||||
val m: Double
|
||||
internal val r: Double
|
||||
val g: Double
|
||||
abstract fun sayHello()
|
||||
companion object {
|
||||
const val G: Double
|
||||
|
||||
Vendored
+2
-2
@@ -1,5 +1,5 @@
|
||||
class NoPrimary {
|
||||
val x: String
|
||||
constructor(x: String)
|
||||
constructor()
|
||||
constructor(x: String)
|
||||
val x: String
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,13 +1,13 @@
|
||||
interface SomeInterface {
|
||||
fun foo(x: Int, y: String): String
|
||||
val bar: Boolean
|
||||
fun foo(x: Int, y: String): String
|
||||
}
|
||||
class SomeClass : SomeInterface {
|
||||
private val baz: Int
|
||||
override fun foo(x: Int, y: String): String
|
||||
override var bar: Boolean
|
||||
get()
|
||||
set(value: Boolean)
|
||||
private val baz: Int
|
||||
lateinit var fau: Double
|
||||
override fun foo(x: Int, y: String): String
|
||||
}
|
||||
inline class InlineClass
|
||||
|
||||
Vendored
+2
-2
@@ -1,9 +1,9 @@
|
||||
interface Some
|
||||
abstract class My<T : Some> {
|
||||
open inner class T
|
||||
abstract val x: T
|
||||
abstract fun foo(arg: T)
|
||||
abstract val y: My<Some>.T
|
||||
abstract val z: My<Some>.T
|
||||
abstract fun foo(arg: T)
|
||||
abstract class Some : My<Some>.T
|
||||
open inner class T
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
interface List<out T : Any> {
|
||||
operator fun get(index: Int): T
|
||||
infix fun concat(other: List<T>): List<T>
|
||||
operator fun get(index: Int): T
|
||||
}
|
||||
typealias StringList = List<out String>
|
||||
typealias AnyList = List<*>
|
||||
abstract class AbstractList<out T : Any> : List<T>
|
||||
class SomeList : AbstractList<Int> {
|
||||
override operator fun get(index: Int): Int
|
||||
override infix fun concat(other: List<Int>): List<Int>
|
||||
override operator fun get(index: Int): Int
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
FILE SYMBOL:
|
||||
KtFirFileSymbol:
|
||||
KtFileSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
origin: SOURCE
|
||||
@@ -9,7 +9,7 @@ CALLABLE NAMES:
|
||||
[test, testVal]
|
||||
|
||||
CALLABLE SYMBOLS:
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -34,13 +34,13 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /testVal
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -69,7 +69,7 @@ CLASSIFIER NAMES:
|
||||
[C, I]
|
||||
|
||||
CLASSIFIER SYMBOLS:
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: C
|
||||
@@ -91,7 +91,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: I
|
||||
|
||||
+112
-112
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -20,12 +20,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -47,12 +47,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -74,12 +74,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -101,12 +101,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -128,12 +128,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -155,12 +155,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -182,12 +182,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -212,7 +212,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -234,12 +234,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -261,12 +261,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -288,12 +288,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -315,12 +315,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -342,12 +342,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -369,12 +369,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -399,7 +399,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -424,7 +424,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -446,12 +446,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -473,12 +473,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -500,12 +500,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -527,12 +527,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -554,12 +554,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -581,12 +581,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -608,12 +608,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -635,12 +635,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -662,12 +662,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -689,12 +689,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -716,12 +716,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -743,12 +743,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -770,12 +770,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/ranges/IntRange
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -797,12 +797,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/ranges/IntRange
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -824,12 +824,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/ranges/LongRange
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -851,12 +851,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/ranges/IntRange
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -878,12 +878,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
@@ -910,12 +910,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
@@ -942,12 +942,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
@@ -974,12 +974,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
@@ -1006,12 +1006,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
@@ -1038,12 +1038,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
@@ -1070,12 +1070,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1097,12 +1097,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
KtValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1124,12 +1124,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
KtValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1151,12 +1151,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1178,12 +1178,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1205,12 +1205,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1232,12 +1232,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1259,12 +1259,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1286,12 +1286,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Byte
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1316,7 +1316,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Char
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1341,7 +1341,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1366,7 +1366,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1391,7 +1391,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1416,7 +1416,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1441,7 +1441,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Short
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1466,7 +1466,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1491,7 +1491,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1516,7 +1516,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1538,12 +1538,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
KtValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1565,12 +1565,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1592,12 +1592,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1622,7 +1622,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1647,7 +1647,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: kotlin/Int.Companion
|
||||
@@ -1669,7 +1669,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] java/lang/Integer
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -1684,12 +1684,12 @@ KtFirConstructorSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -20,12 +20,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -47,13 +47,13 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -75,13 +75,13 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(elements)
|
||||
KtValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -103,12 +103,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
KtValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -133,7 +133,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/MutableListIterator<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -158,7 +158,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/MutableListIterator<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -180,12 +180,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -207,12 +207,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -234,12 +234,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
KtValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] E
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -261,12 +261,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -288,12 +288,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
KtValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] E
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -315,13 +315,13 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/MutableList<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -343,13 +343,13 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(fromIndex)
|
||||
KtFirValueParameterSymbol(toIndex)
|
||||
KtValueParameterSymbol(fromIndex)
|
||||
KtValueParameterSymbol(toIndex)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -371,12 +371,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -398,12 +398,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
KtValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] E
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -425,12 +425,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -452,12 +452,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -482,7 +482,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/MutableIterator<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -507,7 +507,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -529,12 +529,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -565,7 +565,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -587,12 +587,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -617,7 +617,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
+191
-191
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] R
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -20,13 +20,13 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtValueParameterSymbol(p1)
|
||||
KtValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Boolean
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -48,12 +48,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
KtValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -78,7 +78,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: kotlin/Lazy
|
||||
@@ -17,7 +17,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: java/lang/String
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirEnumEntrySymbol:
|
||||
KtEnumEntrySymbol:
|
||||
annotatedType: [] kotlin/LazyThreadSafetyMode
|
||||
callableIdIfNonLocal: kotlin/LazyThreadSafetyMode.SYNCHRONIZED
|
||||
containingEnumClassIdIfNonLocal: kotlin/LazyThreadSafetyMode
|
||||
|
||||
+8
-8
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/List<T>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -19,15 +19,15 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
KtValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/List<T>
|
||||
annotationClassIds: [
|
||||
kotlin/internal/InlineOnly
|
||||
@@ -53,13 +53,13 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/List<T>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -80,10 +80,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
KtValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: kotlin/collections/Iterator
|
||||
@@ -17,7 +17,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: kotlin/io/FileWalkDirection
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] E
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -20,7 +20,7 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
+3
-3
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/ListIterator<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -23,7 +23,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/ListIterator<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -45,7 +45,7 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: kotlin/collections/MutableMap.MutableEntry
|
||||
@@ -17,8 +17,8 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(K)
|
||||
KtFirTypeParameterSymbol(V)
|
||||
KtTypeParameterSymbol(K)
|
||||
KtTypeParameterSymbol(V)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,7 +12,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -26,7 +26,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] Anno
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -41,13 +41,13 @@ KtFirConstructorSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(param1)
|
||||
KtFirValueParameterSymbol(param2)
|
||||
KtValueParameterSymbol(param1)
|
||||
KtValueParameterSymbol(param2)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: Anno
|
||||
@@ -69,7 +69,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: [
|
||||
Anno
|
||||
@@ -99,7 +99,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [
|
||||
Anno
|
||||
]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -23,13 +23,13 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: null
|
||||
dispatchType: <anonymous>
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -54,7 +54,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirAnonymousObjectSymbol:
|
||||
KtAnonymousObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: null
|
||||
@@ -67,13 +67,13 @@ KtFirAnonymousObjectSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] java/lang/Runnable
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /AnonymousContainer.anonymousObject
|
||||
dispatchType: AnonymousContainer
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -98,7 +98,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: AnonymousContainer
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirPropertyGetterSymbol:
|
||||
KtPropertyGetterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -18,7 +18,7 @@ KtFirPropertyGetterSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -32,7 +32,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirPropertySetterSymbol:
|
||||
KtPropertySetterSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -46,22 +46,22 @@ KtFirPropertySetterSymbol:
|
||||
isOverride: false
|
||||
modality: FINAL
|
||||
origin: SOURCE
|
||||
parameter: KtFirValueParameterSymbol(value)
|
||||
parameter: KtValueParameterSymbol(value)
|
||||
receiverType: null
|
||||
symbolKind: ACCESSOR
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(value)
|
||||
KtValueParameterSymbol(value)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /p
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: true
|
||||
@@ -77,7 +77,7 @@ KtFirKotlinPropertySymbol:
|
||||
name: p
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
setter: KtFirPropertySetterSymbol(<setter>)
|
||||
setter: KtPropertySetterSymbol(<setter>)
|
||||
symbolKind: TOP_LEVEL
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.i
|
||||
dispatchType: A
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -29,12 +29,12 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirClassInitializerSymbol:
|
||||
KtClassInitializerSymbol:
|
||||
origin: SOURCE
|
||||
symbolKind: CLASS_MEMBER
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.a
|
||||
dispatchType: A
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -29,7 +29,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -54,7 +54,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] A
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -16,7 +16,7 @@ KtFirConstructorSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
+10
-10
@@ -1,4 +1,4 @@
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] A
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -16,7 +16,7 @@ KtFirConstructorSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -30,7 +30,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] A
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -45,12 +45,12 @@ KtFirConstructorSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
KtValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -64,7 +64,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -78,7 +78,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] A
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -93,13 +93,13 @@ KtFirConstructorSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(y)
|
||||
KtFirValueParameterSymbol(z)
|
||||
KtValueParameterSymbol(y)
|
||||
KtValueParameterSymbol(z)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
@@ -8,7 +8,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: R
|
||||
origin: SOURCE
|
||||
@@ -18,7 +18,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
@@ -37,8 +37,8 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtFirTypeParameterSymbol(R)
|
||||
KtTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(R)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
@@ -9,7 +9,7 @@ KtFirKotlinPropertySymbol:
|
||||
]
|
||||
callableIdIfNonLocal: /i
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -34,13 +34,13 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i)
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /i2
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -65,13 +65,13 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /i3
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: true
|
||||
@@ -87,7 +87,7 @@ KtFirKotlinPropertySymbol:
|
||||
name: i3
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
setter: KtFirPropertySetterSymbol(<setter>)
|
||||
setter: KtPropertySetterSymbol(<setter>)
|
||||
symbolKind: TOP_LEVEL
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
@@ -96,13 +96,13 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: setI3
|
||||
setterDeprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use getter of i3)
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /i4
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: true
|
||||
@@ -118,7 +118,7 @@ KtFirKotlinPropertySymbol:
|
||||
name: i4
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
setter: KtFirPropertySetterSymbol(<setter>)
|
||||
setter: KtPropertySetterSymbol(<setter>)
|
||||
symbolKind: TOP_LEVEL
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
@@ -127,7 +127,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: setI4
|
||||
setterDeprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use getter of i4)
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
@@ -157,7 +157,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use f)
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
]
|
||||
@@ -184,7 +184,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use MyClass)
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
@@ -195,7 +195,7 @@ KtFirKotlinPropertySymbol:
|
||||
]
|
||||
callableIdIfNonLocal: /Foo.i2
|
||||
dispatchType: Foo
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -220,7 +220,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use i2)
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
@@ -250,7 +250,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: SimpleDeprecationInfo(deprecationLevel=WARNING, propagatesToOverrides=true, message=don't use f2)
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: Foo
|
||||
@@ -272,7 +272,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
@@ -283,7 +283,7 @@ KtFirKotlinPropertySymbol:
|
||||
]
|
||||
callableIdIfNonLocal: /j
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -308,7 +308,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: SimpleDeprecationInfo(deprecationLevel=ERROR, propagatesToOverrides=true, message=null)
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
@@ -319,7 +319,7 @@ KtFirKotlinPropertySymbol:
|
||||
]
|
||||
callableIdIfNonLocal: /j2
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -344,7 +344,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: SimpleDeprecationInfo(deprecationLevel=HIDDEN, propagatesToOverrides=true, message=null)
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
java/lang/Deprecated
|
||||
@@ -355,7 +355,7 @@ KtFirKotlinPropertySymbol:
|
||||
]
|
||||
callableIdIfNonLocal: /j2
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirEnumEntrySymbol:
|
||||
KtEnumEntrySymbol:
|
||||
annotatedType: [] X
|
||||
callableIdIfNonLocal: /X.Y
|
||||
containingEnumClassIdIfNonLocal: X
|
||||
@@ -9,7 +9,7 @@ KtFirEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirEnumEntrySymbol:
|
||||
KtEnumEntrySymbol:
|
||||
annotatedType: [] X
|
||||
callableIdIfNonLocal: /X.Z
|
||||
containingEnumClassIdIfNonLocal: X
|
||||
@@ -20,7 +20,7 @@ KtFirEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: X
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,7 +12,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] Style
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -27,12 +27,12 @@ KtFirConstructorSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(value)
|
||||
KtValueParameterSymbol(value)
|
||||
]
|
||||
visibility: Private
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirPropertyGetterSymbol:
|
||||
KtPropertyGetterSymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -52,13 +52,13 @@ KtFirPropertyGetterSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: null
|
||||
dispatchType: <anonymous>
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: false
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -83,7 +83,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirEnumEntrySymbol:
|
||||
KtEnumEntrySymbol:
|
||||
annotatedType: [] Style
|
||||
callableIdIfNonLocal: /Style.SHEET
|
||||
containingEnumClassIdIfNonLocal: Style
|
||||
@@ -94,13 +94,13 @@ KtFirEnumEntrySymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/String
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /Style.exitAnimation
|
||||
dispatchType: Style
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: false
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -125,7 +125,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: Style
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -9,7 +9,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,7 +12,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -34,7 +34,7 @@ KtFirFunctionSymbol:
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
KtValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
+5
-5
@@ -1,4 +1,4 @@
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: X
|
||||
origin: SOURCE
|
||||
@@ -8,7 +8,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] X
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -22,7 +22,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -43,10 +43,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(X)
|
||||
KtTypeParameterSymbol(X)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
KtValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,7 +12,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] A
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -27,12 +27,12 @@ KtFirConstructorSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(i)
|
||||
KtValueParameterSymbol(i)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
+17
-17
@@ -1,4 +1,4 @@
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,7 +12,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -23,7 +23,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirAnonymousFunctionSymbol:
|
||||
KtAnonymousFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
hasStableParameterNames: true
|
||||
@@ -32,11 +32,11 @@ KtFirAnonymousFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
KtValueParameterSymbol(a)
|
||||
]
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -47,7 +47,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -61,7 +61,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -72,7 +72,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirAnonymousFunctionSymbol:
|
||||
KtAnonymousFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
hasStableParameterNames: true
|
||||
@@ -81,11 +81,11 @@ KtFirAnonymousFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
KtValueParameterSymbol(a)
|
||||
]
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -96,7 +96,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -107,7 +107,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirAnonymousFunctionSymbol:
|
||||
KtAnonymousFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
hasStableParameterNames: true
|
||||
@@ -116,11 +116,11 @@ KtFirAnonymousFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(it)
|
||||
KtValueParameterSymbol(it)
|
||||
]
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -145,7 +145,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -159,7 +159,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -181,7 +181,7 @@ KtFirFunctionSymbol:
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(lmbd)
|
||||
KtValueParameterSymbol(lmbd)
|
||||
]
|
||||
visibility: Private
|
||||
deprecationStatus: null
|
||||
|
||||
+12
-12
@@ -1,10 +1,10 @@
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /Foo.i
|
||||
dispatchType: Foo
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: true
|
||||
@@ -20,7 +20,7 @@ KtFirKotlinPropertySymbol:
|
||||
name: i
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
setter: KtFirPropertySetterSymbol(<setter>)
|
||||
setter: KtPropertySetterSymbol(<setter>)
|
||||
symbolKind: CLASS_MEMBER
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
@@ -29,7 +29,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: setMyI
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirPropertyGetterSymbol:
|
||||
KtPropertyGetterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [
|
||||
kotlin/jvm/JvmName
|
||||
@@ -54,7 +54,7 @@ KtFirPropertyGetterSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -68,7 +68,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirPropertySetterSymbol:
|
||||
KtPropertySetterSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: [
|
||||
kotlin/jvm/JvmName
|
||||
@@ -87,22 +87,22 @@ KtFirPropertySetterSymbol:
|
||||
isOverride: false
|
||||
modality: FINAL
|
||||
origin: SOURCE
|
||||
parameter: KtFirValueParameterSymbol(value)
|
||||
parameter: KtValueParameterSymbol(value)
|
||||
receiverType: null
|
||||
symbolKind: ACCESSOR
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(value)
|
||||
KtValueParameterSymbol(value)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /Foo.j
|
||||
dispatchType: Foo
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: false
|
||||
hasGetter: true
|
||||
hasSetter: true
|
||||
@@ -118,7 +118,7 @@ KtFirKotlinPropertySymbol:
|
||||
name: j
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
setter: KtFirPropertySetterSymbol(<setter>)
|
||||
setter: KtPropertySetterSymbol(<setter>)
|
||||
symbolKind: CLASS_MEMBER
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
@@ -127,7 +127,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: setMyJ
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: Foo
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirLocalVariableSymbol:
|
||||
KtLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
@@ -9,7 +9,7 @@ KtFirLocalVariableSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -34,7 +34,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Local
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: null
|
||||
@@ -56,7 +56,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Local
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -23,7 +23,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -48,7 +48,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.x
|
||||
dispatchType: A
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -29,7 +29,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirPropertyGetterSymbol:
|
||||
KtPropertyGetterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -49,13 +49,13 @@ KtFirPropertyGetterSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.y
|
||||
dispatchType: A
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: false
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -80,7 +80,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: A
|
||||
|
||||
+21
-21
@@ -1,4 +1,4 @@
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
@@ -8,7 +8,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T1
|
||||
origin: SOURCE
|
||||
@@ -18,7 +18,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: X.Y
|
||||
@@ -37,12 +37,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T1)
|
||||
KtTypeParameterSymbol(T1)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T2
|
||||
origin: SOURCE
|
||||
@@ -52,7 +52,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: X.Z
|
||||
@@ -71,12 +71,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T2)
|
||||
KtTypeParameterSymbol(T2)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T3
|
||||
origin: SOURCE
|
||||
@@ -86,7 +86,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T4
|
||||
origin: SOURCE
|
||||
@@ -96,7 +96,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T5
|
||||
origin: SOURCE
|
||||
@@ -106,7 +106,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: null
|
||||
@@ -125,12 +125,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T5)
|
||||
KtTypeParameterSymbol(T5)
|
||||
]
|
||||
visibility: Local
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T6
|
||||
origin: SOURCE
|
||||
@@ -140,7 +140,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: null
|
||||
@@ -159,12 +159,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T6)
|
||||
KtTypeParameterSymbol(T6)
|
||||
]
|
||||
visibility: Local
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: null
|
||||
@@ -183,12 +183,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T4)
|
||||
KtTypeParameterSymbol(T4)
|
||||
]
|
||||
visibility: Local
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -209,13 +209,13 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T3)
|
||||
KtTypeParameterSymbol(T3)
|
||||
]
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: X
|
||||
@@ -234,7 +234,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -23,7 +23,7 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /x
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -29,7 +29,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirPropertyGetterSymbol:
|
||||
KtPropertyGetterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -49,13 +49,13 @@ KtFirPropertyGetterSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /y
|
||||
dispatchType: null
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: false
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
@@ -8,7 +8,7 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: X
|
||||
@@ -27,12 +27,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
KtTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: Z
|
||||
origin: SOURCE
|
||||
@@ -42,14 +42,14 @@ KtFirTypeParameterSymbol:
|
||||
variance: INVARIANT
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirTypeAliasSymbol:
|
||||
KtTypeAliasSymbol:
|
||||
classIdIfNonLocal: Y
|
||||
expandedType: X<Z>
|
||||
name: Y
|
||||
origin: SOURCE
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(Z)
|
||||
KtTypeParameterSymbol(Z)
|
||||
]
|
||||
visibility: Private
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
@@ -25,7 +25,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
@@ -52,7 +52,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
@@ -79,7 +79,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
@@ -106,7 +106,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: I
|
||||
@@ -128,7 +128,7 @@ KtFirNamedClassOrObjectSymbol:
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [
|
||||
Anno2()
|
||||
psi: KtAnnotationEntry
|
||||
@@ -145,7 +145,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [
|
||||
Anno3()
|
||||
psi: KtAnnotationEntry
|
||||
@@ -170,12 +170,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(arg)
|
||||
KtValueParameterSymbol(arg)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
KtKotlinPropertySymbol:
|
||||
annotatedType: [
|
||||
Anno4()
|
||||
psi: KtAnnotationEntry
|
||||
@@ -184,7 +184,7 @@ KtFirKotlinPropertySymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /X.x
|
||||
dispatchType: X
|
||||
getter: KtFirPropertyGetterSymbol(<getter>)
|
||||
getter: KtPropertyGetterSymbol(<getter>)
|
||||
hasBackingField: true
|
||||
hasGetter: true
|
||||
hasSetter: false
|
||||
@@ -209,7 +209,7 @@ KtFirKotlinPropertySymbol:
|
||||
javaSetterName: null
|
||||
setterDeprecationStatus: null
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
KtNamedClassOrObjectSymbol:
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
classIdIfNonLocal: X
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,7 +12,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -34,12 +34,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
KtValueParameterSymbol(a)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Float?
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -53,7 +53,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -75,12 +75,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(b)
|
||||
KtValueParameterSymbol(b)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] kotlin/Any
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -94,7 +94,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -116,12 +116,12 @@ KtFirFunctionSymbol:
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(c)
|
||||
KtValueParameterSymbol(c)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
KtValueParameterSymbol:
|
||||
annotatedType: [] ERROR CLASS: Symbol not found for Unresolved
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -135,7 +135,7 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
KtFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -157,7 +157,7 @@ KtFirFunctionSymbol:
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(d)
|
||||
KtValueParameterSymbol(d)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
KtFirBackingFieldSymbol:
|
||||
KtBackingFieldSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
isExtension: false
|
||||
name: field
|
||||
origin: PROPERTY_BACKING_FIELD
|
||||
owningProperty: KtFirKotlinPropertySymbol(x)
|
||||
owningProperty: KtKotlinPropertySymbol(x)
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
deprecationStatus: null
|
||||
|
||||
+3
-3
@@ -1,4 +1,4 @@
|
||||
KtFirConstructorSymbol:
|
||||
KtConstructorSymbol:
|
||||
annotatedType: [] java/util/ArrayList<E>
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
@@ -12,10 +12,10 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: CLASS_MEMBER
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(E)
|
||||
KtTypeParameterSymbol(E)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
deprecationStatus: null
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
KtFirSamConstructorSymbol:
|
||||
KtSamConstructorSymbol:
|
||||
annotatedType: [] java/lang/Runnable
|
||||
callableIdIfNonLocal: java/lang/Runnable
|
||||
hasStableParameterNames: true
|
||||
@@ -8,6 +8,6 @@ KtFirSamConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: SAM_CONSTRUCTOR
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(function)
|
||||
KtValueParameterSymbol(function)
|
||||
]
|
||||
deprecationStatus: null
|
||||
|
||||
Reference in New Issue
Block a user