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