FIR IDE: render list of symbols with indentation
Also, render `psi` of annotation call (to showcase they're always null for now)
This commit is contained in:
committed by
Ilya Kirillov
parent
5b40f291bd
commit
c559adc0fb
+23
-7
@@ -16,6 +16,14 @@ import kotlin.reflect.KProperty
|
||||
import kotlin.reflect.jvm.javaGetter
|
||||
|
||||
public object DebugSymbolRenderer {
|
||||
private fun StringBuilder.appendLine(indent: Int, line: String) {
|
||||
appendLine(line.prependIndent(" ".repeat(indent)))
|
||||
}
|
||||
|
||||
private fun StringBuilder.append(indent: Int, value: String) {
|
||||
append(value.prependIndent(" ".repeat(indent)))
|
||||
}
|
||||
|
||||
public fun render(symbol: KtSymbol): String = buildString {
|
||||
val klass = symbol::class
|
||||
appendLine("${klass.simpleName}:")
|
||||
@@ -28,7 +36,7 @@ public object DebugSymbolRenderer {
|
||||
"Could not render due to ${e.cause}"
|
||||
}
|
||||
val stringValue = renderValue(value)
|
||||
appendLine(" ${property.name}: $stringValue")
|
||||
appendLine(INDENT, "${property.name}: $stringValue")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,9 +50,11 @@ public object DebugSymbolRenderer {
|
||||
is ClassId -> value.asString()
|
||||
is CallableId -> value.toString()
|
||||
is Enum<*> -> value.name
|
||||
is List<*> -> buildString {
|
||||
append("[")
|
||||
value.joinTo(this) { renderValue(it) }
|
||||
is List<*> -> if (value.isEmpty()) "[]" else buildString {
|
||||
appendLine("[")
|
||||
value.forEach {
|
||||
appendLine(INDENT, renderValue(it))
|
||||
}
|
||||
append("]")
|
||||
}
|
||||
is KtType -> value.asStringForDebugging()
|
||||
@@ -62,11 +72,17 @@ public object DebugSymbolRenderer {
|
||||
}
|
||||
is KtSimpleConstantValue<*> -> renderValue(value.value)
|
||||
is KtNamedConstantValue -> "${renderValue(value.name)} = ${renderValue(value.expression)}"
|
||||
is KtAnnotationCall ->
|
||||
"${renderValue(value.classId)}${value.arguments.joinToString(prefix = "(", postfix = ")") { renderValue(it) }}"
|
||||
is KtAnnotationCall -> buildString {
|
||||
append(renderValue(value.classId))
|
||||
appendLine(value.arguments.joinToString(prefix = "(", postfix = ")") { renderValue(it) })
|
||||
// TODO: perhaps we want to render `psi` for all other cases as well.
|
||||
append(INDENT, "psi: ${renderValue(value.psi)}")
|
||||
}
|
||||
is KtTypeAndAnnotations -> "${renderValue(value.annotations)} ${renderValue(value.type)}"
|
||||
else -> value::class.simpleName!!
|
||||
}
|
||||
|
||||
private val ignoredPropertyNames = setOf("firRef", "psi", "token", "builder")
|
||||
}
|
||||
|
||||
private const val INDENT = 2
|
||||
}
|
||||
|
||||
@@ -74,7 +74,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: C
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
@@ -93,7 +95,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: I
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -75,7 +75,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: C
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
@@ -94,7 +96,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: I
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+252
-61
@@ -11,6 +11,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.and
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: true
|
||||
@@ -25,7 +26,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -34,6 +37,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.compareTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -48,7 +52,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -57,6 +63,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.compareTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -71,7 +78,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -80,6 +89,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.compareTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -94,7 +104,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -103,6 +115,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.compareTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -117,7 +130,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -126,6 +141,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.compareTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -140,7 +156,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -149,6 +167,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.compareTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -163,7 +182,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -172,6 +193,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.dec
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -195,6 +217,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.div
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -209,7 +232,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -218,6 +243,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.div
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -232,7 +258,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -241,6 +269,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.div
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -255,7 +284,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -264,6 +295,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.div
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -278,7 +310,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -287,6 +321,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.div
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -301,7 +336,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -310,6 +347,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.div
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -324,7 +362,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -333,6 +373,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.inc
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -356,6 +397,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.inv
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -379,6 +421,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.minus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -393,7 +436,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -402,6 +447,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.minus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -416,7 +462,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -425,6 +473,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.minus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -439,7 +488,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -448,6 +499,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.minus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -462,7 +514,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -471,6 +525,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.minus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -485,7 +540,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -494,6 +551,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.minus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -508,7 +566,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -517,6 +577,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.or
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: true
|
||||
@@ -531,7 +592,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -540,6 +603,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.plus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -554,7 +618,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -563,6 +629,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.plus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -577,7 +644,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -586,6 +655,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.plus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -600,7 +670,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -609,6 +681,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.plus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -623,7 +696,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -632,6 +707,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.plus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -646,7 +722,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -655,6 +733,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.plus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -669,7 +748,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -678,6 +759,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.rangeTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -692,7 +774,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -701,6 +785,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.rangeTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -715,7 +800,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -724,6 +811,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.rangeTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -738,7 +826,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -747,6 +837,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.rangeTo
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -761,15 +852,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -784,15 +883,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -807,15 +914,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -830,15 +945,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -853,15 +976,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -876,15 +1007,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -899,7 +1038,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -908,6 +1049,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.shl
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: true
|
||||
@@ -922,7 +1064,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(bitCount)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -931,6 +1075,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.shr
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: true
|
||||
@@ -945,7 +1090,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(bitCount)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -954,6 +1101,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.times
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -968,7 +1116,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -977,6 +1127,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.times
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -991,7 +1142,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1000,6 +1153,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.times
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1014,7 +1168,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1023,6 +1179,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.times
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1037,7 +1194,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1046,6 +1205,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.times
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1060,7 +1220,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1069,6 +1231,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.times
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1083,7 +1246,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1092,6 +1257,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toByte
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1115,6 +1281,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toChar
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1138,6 +1305,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toDouble
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1161,6 +1329,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toFloat
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1184,6 +1353,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toInt
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1207,6 +1377,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toLong
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1230,6 +1401,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.toShort
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1253,6 +1425,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.unaryMinus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1276,6 +1449,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.unaryPlus
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1299,6 +1473,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.ushr
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: true
|
||||
@@ -1313,7 +1488,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(bitCount)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1322,6 +1499,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Int.xor
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: true
|
||||
@@ -1336,7 +1514,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1345,6 +1525,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.equals
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1359,7 +1540,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1368,6 +1551,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.hashCode
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1391,6 +1575,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.toString
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -1422,7 +1607,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Companion
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
@@ -1434,13 +1621,16 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: java/lang/Integer
|
||||
dispatchType: null
|
||||
hasStableParameterNames: false
|
||||
isExtension: false
|
||||
isPrimary: false
|
||||
origin: JAVA
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(value)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1450,6 +1640,7 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: kotlin/Int
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isPrimary: true
|
||||
origin: LIBRARY
|
||||
|
||||
+189
-61
@@ -19,7 +19,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -43,7 +45,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -67,7 +71,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -91,7 +97,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -115,7 +123,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -139,7 +149,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -163,7 +175,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -211,7 +225,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -235,7 +251,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -259,7 +277,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -283,7 +303,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -307,7 +329,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -331,7 +355,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -403,7 +429,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -427,7 +455,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -451,7 +481,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -475,7 +507,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -499,7 +533,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -523,7 +559,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -547,7 +585,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -571,7 +611,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -595,7 +637,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -619,7 +663,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -643,7 +689,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -667,7 +715,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -691,7 +741,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -715,7 +767,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -739,7 +793,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -763,7 +819,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -787,13 +845,20 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
@@ -811,13 +876,20 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Double
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
@@ -835,13 +907,20 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Float
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
@@ -859,13 +938,20 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
@@ -883,13 +969,20 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Long
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
@@ -907,13 +1000,20 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
annotationClassIds: [kotlin/SinceKotlin]
|
||||
annotations: [kotlin/SinceKotlin(version = 1.1)]
|
||||
annotationClassIds: [
|
||||
kotlin/SinceKotlin
|
||||
]
|
||||
annotations: [
|
||||
kotlin/SinceKotlin(version = 1.1)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/Int.rem
|
||||
dispatchType: kotlin/Int
|
||||
hasStableParameterNames: true
|
||||
@@ -931,7 +1031,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -955,7 +1057,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(bitCount)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -979,7 +1083,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(bitCount)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1003,7 +1109,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1027,7 +1135,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1051,7 +1161,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1075,7 +1187,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1099,7 +1213,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1123,7 +1239,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1363,7 +1481,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(bitCount)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(bitCount)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1387,7 +1507,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1411,7 +1533,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1476,7 +1600,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Companion
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
@@ -1495,7 +1621,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
|
||||
@@ -8,6 +8,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.add
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -22,7 +23,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -31,6 +34,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.add
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -45,7 +49,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index), KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -54,6 +61,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.addAll
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -68,7 +76,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index), KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -77,6 +88,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.addAll
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -91,7 +103,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -100,6 +114,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.clear
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -123,6 +138,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.listIterator
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -146,6 +162,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.listIterator
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -160,7 +177,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -169,6 +188,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.remove
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -183,7 +203,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -192,6 +214,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.removeAll
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -206,7 +229,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -215,6 +240,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.removeAt
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -229,7 +255,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -238,6 +266,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.retainAll
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -252,7 +281,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -261,6 +292,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.set
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -275,7 +307,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index), KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -284,6 +319,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.subList
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -298,7 +334,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(fromIndex), KtFirValueParameterSymbol(toIndex)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(fromIndex)
|
||||
KtFirValueParameterSymbol(toIndex)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -307,6 +346,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.contains
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -321,7 +361,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -330,6 +372,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.containsAll
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -344,7 +387,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -353,6 +398,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.get
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -367,7 +413,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -376,6 +424,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.indexOf
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -390,7 +439,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -399,6 +450,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/List.isEmpty
|
||||
dispatchType: kotlin/collections/List<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -422,6 +474,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.iterator
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -445,6 +498,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/MutableList.lastIndexOf
|
||||
dispatchType: kotlin/collections/MutableList<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -459,7 +513,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
@@ -493,6 +549,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.equals
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -507,7 +564,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -516,6 +575,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.hashCode
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -539,6 +599,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.toString
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
|
||||
@@ -19,7 +19,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -43,7 +45,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index), KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -67,7 +72,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index), KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -91,7 +99,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -163,7 +173,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -187,7 +199,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -211,7 +225,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -235,7 +251,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -259,7 +277,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -283,7 +303,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index), KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -307,7 +330,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(fromIndex), KtFirValueParameterSymbol(toIndex)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(fromIndex)
|
||||
KtFirValueParameterSymbol(toIndex)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -331,7 +357,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -355,7 +383,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -379,7 +409,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -403,7 +435,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -475,7 +509,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
@@ -524,7 +560,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
|
||||
+403
-131
File diff suppressed because it is too large
Load Diff
+270
-71
@@ -131,7 +131,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -155,7 +157,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -179,7 +183,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -203,7 +209,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -227,7 +236,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -251,7 +263,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: PackageVisibility
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -275,13 +290,23 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: [kotlin/Deprecated]
|
||||
annotations: [kotlin/Deprecated(message = Deprecated in Java)]
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
]
|
||||
annotations: [
|
||||
kotlin/Deprecated(message = Deprecated in Java)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: java/lang/String.getBytes
|
||||
dispatchType: java/lang/String
|
||||
hasStableParameterNames: false
|
||||
@@ -299,7 +324,12 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -323,7 +353,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -347,7 +379,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -395,7 +429,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -419,7 +455,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -443,7 +481,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -467,7 +507,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -491,7 +533,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -515,7 +559,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -539,7 +585,12 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -563,7 +614,13 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3), KtFirValueParameterSymbol(p4)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
KtFirValueParameterSymbol(p4)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -587,7 +644,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -611,7 +671,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -635,7 +697,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -683,7 +747,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -707,7 +773,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -731,7 +800,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -755,7 +826,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -779,7 +853,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Private
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -803,7 +880,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -827,7 +906,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -851,7 +933,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -875,7 +959,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -899,7 +986,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Private
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -923,7 +1013,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -947,7 +1039,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -971,7 +1066,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -995,7 +1093,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1019,7 +1119,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1043,7 +1146,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1067,7 +1173,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1091,7 +1199,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1115,7 +1225,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1139,7 +1252,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1163,7 +1279,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1187,7 +1306,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1211,7 +1332,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1259,7 +1382,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -1403,7 +1528,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -1420,7 +1547,11 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: OPEN
|
||||
name: CaseInsensitiveComparator
|
||||
origin: JAVA
|
||||
superTypes: [[] kotlin/Any, [] java/util/Comparator<ft<kotlin/String, kotlin/String?>>, [] java/io/Serializable]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
[] java/util/Comparator<ft<kotlin/String, kotlin/String?>>
|
||||
[] java/io/Serializable
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
visibility: Private
|
||||
@@ -1456,7 +1587,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1473,7 +1606,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1490,7 +1625,11 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1507,13 +1646,22 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
annotatedType: [] java/lang/String
|
||||
annotationClassIds: [kotlin/Deprecated]
|
||||
annotations: [kotlin/Deprecated(message = Deprecated in Java)]
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
]
|
||||
annotations: [
|
||||
kotlin/Deprecated(message = Deprecated in Java)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: java/lang/String
|
||||
dispatchType: null
|
||||
@@ -1524,13 +1672,23 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
annotatedType: [] java/lang/String
|
||||
annotationClassIds: [kotlin/Deprecated]
|
||||
annotations: [kotlin/Deprecated(message = Deprecated in Java)]
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
]
|
||||
annotations: [
|
||||
kotlin/Deprecated(message = Deprecated in Java)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: java/lang/String
|
||||
dispatchType: null
|
||||
@@ -1541,7 +1699,10 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1558,7 +1719,12 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1575,7 +1741,12 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2), KtFirValueParameterSymbol(p3)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
KtFirValueParameterSymbol(p3)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1592,7 +1763,10 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1609,7 +1783,10 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1626,7 +1803,11 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1643,7 +1824,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1660,7 +1843,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1677,7 +1862,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
@@ -1694,13 +1881,21 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
]
|
||||
visibility: PackageVisibility
|
||||
|
||||
KtFirConstructorSymbol:
|
||||
annotatedType: [] java/lang/String
|
||||
annotationClassIds: [kotlin/Deprecated]
|
||||
annotations: [kotlin/Deprecated(message = Deprecated in Java)]
|
||||
annotationClassIds: [
|
||||
kotlin/Deprecated
|
||||
]
|
||||
annotations: [
|
||||
kotlin/Deprecated(message = Deprecated in Java)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: java/lang/String
|
||||
dispatchType: null
|
||||
@@ -1711,5 +1906,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p0), KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: PackageVisibility
|
||||
|
||||
@@ -10,6 +10,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Function2.invoke
|
||||
dispatchType: kotlin/Function2<P1, P2, R>
|
||||
hasStableParameterNames: false
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -24,7 +25,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -33,6 +37,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.equals
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -47,7 +52,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -56,6 +63,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.hashCode
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -79,6 +87,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/Any.toString
|
||||
dispatchType: kotlin/Any
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
|
||||
@@ -19,7 +19,10 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(p1), KtFirValueParameterSymbol(p2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p1)
|
||||
KtFirValueParameterSymbol(p2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -43,7 +46,9 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(other)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(other)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
|
||||
@@ -18,8 +18,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: Lazy
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
@@ -12,7 +12,11 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: Lazy
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -18,7 +18,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: String
|
||||
origin: JAVA
|
||||
superTypes: [[] kotlin/Any, [] java/io/Serializable, [] kotlin/Comparable<ft<kotlin/String, kotlin/String?>>, [] kotlin/CharSequence]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
[] java/io/Serializable
|
||||
[] kotlin/Comparable<ft<kotlin/String, kotlin/String?>>
|
||||
[] kotlin/CharSequence
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -12,7 +12,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: String
|
||||
origin: JAVA
|
||||
superTypes: [[] kotlin/Any, [] java/io/Serializable, [] kotlin/Comparable<ft<kotlin/String, kotlin/String?>>, [] kotlin/CharSequence]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
[] java/io/Serializable
|
||||
[] kotlin/Comparable<ft<kotlin/String, kotlin/String?>>
|
||||
[] kotlin/CharSequence
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+25
-7
@@ -10,6 +10,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/listOf
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -23,16 +24,26 @@ KtFirFunctionSymbol:
|
||||
origin: LIBRARY
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/List<T>
|
||||
annotationClassIds: [kotlin/internal/InlineOnly]
|
||||
annotations: [kotlin/internal/InlineOnly()]
|
||||
annotationClassIds: [
|
||||
kotlin/internal/InlineOnly
|
||||
]
|
||||
annotations: [
|
||||
kotlin/internal/InlineOnly()
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/collections/listOf
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -46,7 +57,9 @@ KtFirFunctionSymbol:
|
||||
origin: LIBRARY
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -56,6 +69,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/listOf
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -69,7 +83,11 @@ KtFirFunctionSymbol:
|
||||
origin: LIBRARY
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
+22
-7
@@ -18,14 +18,23 @@ KtFirFunctionSymbol:
|
||||
origin: LIBRARY
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
valueParameters: [KtFirValueParameterSymbol(element)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(element)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/collections/List<T>
|
||||
annotationClassIds: [kotlin/internal/InlineOnly]
|
||||
annotations: [kotlin/internal/InlineOnly()]
|
||||
annotationClassIds: [
|
||||
kotlin/internal/InlineOnly
|
||||
]
|
||||
annotations: [
|
||||
kotlin/internal/InlineOnly()
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: kotlin/collections/listOf
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
@@ -42,7 +51,9 @@ KtFirFunctionSymbol:
|
||||
origin: LIBRARY
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -66,6 +77,10 @@ KtFirFunctionSymbol:
|
||||
origin: LIBRARY
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
valueParameters: [KtFirValueParameterSymbol(elements)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(elements)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -16,8 +16,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: Iterator
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
@@ -12,7 +12,11 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: Iterator
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -18,7 +18,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: FileWalkDirection
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Enum<kotlin/io/FileWalkDirection>]
|
||||
superTypes: [
|
||||
[] kotlin/Enum<kotlin/io/FileWalkDirection>
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -12,7 +12,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: FileWalkDirection
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/Enum<kotlin/io/FileWalkDirection>]
|
||||
superTypes: [
|
||||
[] kotlin/Enum<kotlin/io/FileWalkDirection>
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -8,6 +8,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/List.get
|
||||
dispatchType: kotlin/collections/List<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -22,6 +23,8 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
@@ -19,5 +19,7 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
+5
-1
@@ -8,6 +8,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/List.listIterator
|
||||
dispatchType: kotlin/collections/List<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -31,6 +32,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: kotlin/collections/List.listIterator
|
||||
dispatchType: kotlin/collections/List<E>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -45,6 +47,8 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
+3
-1
@@ -43,5 +43,7 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(index)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(index)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -16,8 +16,13 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: MutableEntry
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/collections/Map.Entry<K, V>]
|
||||
superTypes: [
|
||||
[] kotlin/collections/Map.Entry<K, V>
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(K), KtFirTypeParameterSymbol(V)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(K)
|
||||
KtFirTypeParameterSymbol(V)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
@@ -12,7 +12,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: MutableEntry
|
||||
origin: LIBRARY
|
||||
superTypes: [[] kotlin/collections/Map.Entry<K, V>]
|
||||
superTypes: [
|
||||
[] kotlin/collections/Map.Entry<K, V>
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(K), KtFirTypeParameterSymbol(V)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(K)
|
||||
KtFirTypeParameterSymbol(V)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -43,13 +43,17 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: Anno
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isPrimary: true
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(param1), KtFirValueParameterSymbol(param2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(param1)
|
||||
KtFirValueParameterSymbol(param2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -66,17 +70,25 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: [Anno]
|
||||
annotations: [Anno(param1 = funparam, param2 = 3)]
|
||||
annotationClassIds: [
|
||||
Anno
|
||||
]
|
||||
annotations: [
|
||||
Anno(param1 = funparam, param2 = 3)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: /X.x
|
||||
dispatchType: X
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -95,8 +107,13 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [Anno]
|
||||
annotations: [Anno(param1 = param, param2 = 2)]
|
||||
annotationClassIds: [
|
||||
Anno
|
||||
]
|
||||
annotations: [
|
||||
Anno(param1 = param, param2 = 2)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: X
|
||||
classKind: CLASS
|
||||
companionObject: null
|
||||
@@ -108,7 +125,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -38,7 +38,10 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(param1), KtFirValueParameterSymbol(param2)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(param1)
|
||||
KtFirValueParameterSymbol(param2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -55,15 +58,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
annotationClassIds: [Anno]
|
||||
annotations: [Anno(param1 = funparam, param2 = 3)]
|
||||
annotationClassIds: [
|
||||
Anno
|
||||
]
|
||||
annotations: [
|
||||
Anno(param1 = funparam, param2 = 3)
|
||||
psi: null
|
||||
]
|
||||
callableIdIfNonLocal: /X.x
|
||||
dispatchType: X
|
||||
hasStableParameterNames: true
|
||||
@@ -85,8 +95,13 @@ KtFirFunctionSymbol:
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [Anno]
|
||||
annotations: [Anno(param1 = param, param2 = 2)]
|
||||
annotationClassIds: [
|
||||
Anno
|
||||
]
|
||||
annotations: [
|
||||
Anno(param1 = param, param2 = 2)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: X
|
||||
classKind: CLASS
|
||||
companionObject: null
|
||||
@@ -98,7 +113,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -15,6 +15,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: null
|
||||
dispatchType: <anonymous>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -64,7 +65,9 @@ KtFirAnonymousObjectSymbol:
|
||||
classKind: ANONYMOUS_OBJECT
|
||||
name: null
|
||||
origin: SOURCE
|
||||
superTypes: [[] java/lang/Runnable]
|
||||
superTypes: [
|
||||
[] java/lang/Runnable
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
@@ -106,7 +109,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: AnonymousContainer
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -54,7 +54,9 @@ KtFirAnonymousObjectSymbol:
|
||||
classKind: ANONYMOUS_OBJECT
|
||||
name: null
|
||||
origin: SOURCE
|
||||
superTypes: [[] java/lang/Runnable]
|
||||
superTypes: [
|
||||
[] java/lang/Runnable
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
@@ -96,7 +98,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: AnonymousContainer
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -17,7 +17,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -12,7 +12,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -36,6 +36,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.x
|
||||
dispatchType: A
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -67,7 +68,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -61,7 +61,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+4
-1
@@ -10,6 +10,7 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: A
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isPrimary: true
|
||||
origin: SOURCE
|
||||
@@ -33,7 +34,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+3
-1
@@ -29,7 +29,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+13
-3
@@ -12,6 +12,7 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: A
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isPrimary: true
|
||||
origin: SOURCE
|
||||
@@ -41,13 +42,16 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: A
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isPrimary: false
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(x)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
@@ -83,13 +87,17 @@ KtFirConstructorSymbol:
|
||||
callableIdIfNonLocal: null
|
||||
containingClassIdIfNonLocal: A
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isPrimary: false
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(y), KtFirValueParameterSymbol(z)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(y)
|
||||
KtFirValueParameterSymbol(z)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -106,7 +114,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+10
-3
@@ -42,7 +42,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(x)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
@@ -85,7 +87,10 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(y), KtFirValueParameterSymbol(z)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(y)
|
||||
KtFirValueParameterSymbol(z)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -102,7 +107,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+13
-4
@@ -7,14 +7,18 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: R
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -31,8 +35,13 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T), KtFirTypeParameterSymbol(R)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtFirTypeParameterSymbol(R)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
+13
-4
@@ -2,14 +2,18 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: R
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -26,7 +30,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T), KtFirTypeParameterSymbol(R)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
KtFirTypeParameterSymbol(R)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -38,7 +38,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Enum<X>]
|
||||
superTypes: [
|
||||
[] kotlin/Enum<X>
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -32,7 +32,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Enum<X>]
|
||||
superTypes: [
|
||||
[] kotlin/Enum<X>
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -36,7 +36,9 @@ origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(value)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(value)
|
||||
]
|
||||
visibility: Private
|
||||
|
||||
KtFirPropertyGetterSymbol:
|
||||
@@ -130,7 +132,9 @@ isInner: false
|
||||
modality: FINAL
|
||||
name: Style
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Enum<Style>]
|
||||
superTypes: [
|
||||
[] kotlin/Enum<Style>
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -25,7 +25,9 @@ KtFirConstructorSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(value)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(value)
|
||||
]
|
||||
visibility: Private
|
||||
|
||||
KtFirPropertyGetterSymbol:
|
||||
@@ -119,7 +121,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Style
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Enum<Style>]
|
||||
superTypes: [
|
||||
[] kotlin/Enum<Style>
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -21,6 +21,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /foo
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -35,6 +36,8 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(x)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
@@ -32,5 +32,7 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(x)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
+10
-3
@@ -6,7 +6,9 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: X
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
@@ -28,6 +30,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /foo
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -41,7 +44,11 @@ KtFirFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(X)]
|
||||
valueParameters: [KtFirValueParameterSymbol(x)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(X)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
+9
-3
@@ -2,7 +2,9 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: X
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
@@ -38,6 +40,10 @@ KtFirFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(X)]
|
||||
valueParameters: [KtFirValueParameterSymbol(x)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(X)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(x)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
+17
-4
@@ -51,11 +51,14 @@ KtFirLocalVariableSymbol:
|
||||
KtFirAnonymousFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [KtFirValueParameterSymbol(a)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
]
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
@@ -93,11 +96,14 @@ KtFirLocalVariableSymbol:
|
||||
KtFirAnonymousFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [KtFirValueParameterSymbol(a)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
]
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
@@ -122,11 +128,14 @@ KtFirLocalVariableSymbol:
|
||||
KtFirAnonymousFunctionSymbol:
|
||||
annotatedType: [] kotlin/Int
|
||||
callableIdIfNonLocal: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [KtFirValueParameterSymbol(it)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(it)
|
||||
]
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
@@ -134,6 +143,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /foo
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -170,6 +180,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /bar
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -184,6 +195,8 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(lmbd)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(lmbd)
|
||||
]
|
||||
visibility: Private
|
||||
*/
|
||||
|
||||
+12
-4
@@ -29,7 +29,9 @@ KtFirAnonymousFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [KtFirValueParameterSymbol(a)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
]
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
@@ -72,7 +74,9 @@ KtFirAnonymousFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [KtFirValueParameterSymbol(a)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(a)
|
||||
]
|
||||
|
||||
KtFirLocalVariableSymbol:
|
||||
annotatedType: [] kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||
@@ -102,7 +106,9 @@ KtFirAnonymousFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: LOCAL
|
||||
valueParameters: [KtFirValueParameterSymbol(it)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(it)
|
||||
]
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [] kotlin/Unit
|
||||
@@ -162,5 +168,7 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(lmbd)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(lmbd)
|
||||
]
|
||||
visibility: Private
|
||||
|
||||
@@ -23,6 +23,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: null
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -54,7 +55,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: F
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
visibility: Local
|
||||
@@ -65,6 +68,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /yyy
|
||||
dispatchType: null
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
|
||||
@@ -46,7 +46,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: F
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: []
|
||||
visibility: Local
|
||||
|
||||
@@ -11,6 +11,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.x
|
||||
dispatchType: A
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -34,6 +35,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /A.y
|
||||
dispatchType: A
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -65,7 +67,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -60,7 +60,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -86,7 +86,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -79,7 +79,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: A
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+61
-20
@@ -16,14 +16,18 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T1
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -40,16 +44,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Y
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(T1)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T2
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -66,30 +76,40 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Z
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(T2)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T3
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T4
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T5
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -106,16 +126,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: K
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T5)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T5)
|
||||
]
|
||||
visibility: Local
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T6
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -132,9 +158,13 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: C
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T6)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T6)
|
||||
]
|
||||
visibility: Local
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -151,9 +181,13 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: U
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T4)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T4)
|
||||
]
|
||||
visibility: Local
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -162,6 +196,7 @@ KtFirFunctionSymbol:
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /X.foo
|
||||
dispatchType: X<T>
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -175,7 +210,9 @@ KtFirFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(T3)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T3)
|
||||
]
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -193,8 +230,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
*/
|
||||
|
||||
+60
-20
@@ -2,14 +2,18 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T1
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -26,16 +30,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Y
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(T1)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T1)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T2
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -52,30 +62,40 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Z
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(T2)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T2)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T3
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T4
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T5
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -92,16 +112,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: K
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T5)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T5)
|
||||
]
|
||||
visibility: Local
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T6
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -118,9 +144,13 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: C
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T6)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T6)
|
||||
]
|
||||
visibility: Local
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -137,9 +167,13 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: U
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: LOCAL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T4)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T4)
|
||||
]
|
||||
visibility: Local
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
@@ -162,7 +196,9 @@ KtFirFunctionSymbol:
|
||||
origin: SOURCE
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(T3)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T3)
|
||||
]
|
||||
valueParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -180,7 +216,11 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
@@ -8,7 +8,9 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -25,16 +27,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: Z
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeAliasSymbol:
|
||||
|
||||
@@ -2,7 +2,9 @@ KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: T
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
@@ -19,16 +21,22 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: [KtFirTypeParameterSymbol(T)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(T)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirTypeParameterSymbol:
|
||||
isReified: false
|
||||
name: Z
|
||||
origin: SOURCE
|
||||
upperBounds: [kotlin/Any?]
|
||||
upperBounds: [
|
||||
kotlin/Any?
|
||||
]
|
||||
variance: INVARIANT
|
||||
|
||||
KtFirTypeAliasSymbol:
|
||||
|
||||
@@ -17,8 +17,13 @@ class X : @Anno1 I {
|
||||
// RESULT
|
||||
/*
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno1
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -30,14 +35,21 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno1
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno2
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -49,14 +61,21 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno2
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno3
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -68,14 +87,21 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno3
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno4
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -87,7 +113,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno4
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
@@ -106,13 +134,18 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: I
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
annotatedType: [Anno2()] @R|Anno2|() I
|
||||
annotatedType: [
|
||||
Anno2()
|
||||
psi: null
|
||||
] @R|Anno2|() I
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: null
|
||||
@@ -125,11 +158,15 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [Anno3()] @R|Anno3|() I
|
||||
annotatedType: [
|
||||
Anno3()
|
||||
psi: KtAnnotationEntry
|
||||
] @R|Anno2|() I
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /X.f
|
||||
dispatchType: X
|
||||
hasStableParameterNames: true
|
||||
isExtension: false
|
||||
isExternal: false
|
||||
isInfix: false
|
||||
@@ -144,11 +181,16 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(arg)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(arg)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
annotatedType: [Anno4()] @R|Anno4|() I
|
||||
annotatedType: [
|
||||
Anno4()
|
||||
psi: KtAnnotationEntry
|
||||
] @R|Anno2|() I
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /X.x
|
||||
@@ -186,7 +228,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[Anno1()] @R|Anno1|() I]
|
||||
superTypes: [
|
||||
[
|
||||
Anno1()
|
||||
psi: null
|
||||
] @R|Anno2|() I
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno1
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -12,14 +17,21 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno1
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno2
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -31,14 +43,21 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno2
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno3
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -50,14 +69,21 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno3
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirNamedClassOrObjectSymbol:
|
||||
annotationClassIds: [kotlin/annotation/Target]
|
||||
annotations: [kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)]
|
||||
annotationClassIds: [
|
||||
kotlin/annotation/Target
|
||||
]
|
||||
annotations: [
|
||||
kotlin/annotation/Target(allowedTargets = KtUnsupportedConstantValue)
|
||||
psi: null
|
||||
]
|
||||
classIdIfNonLocal: Anno4
|
||||
classKind: ANNOTATION_CLASS
|
||||
companionObject: null
|
||||
@@ -69,7 +95,9 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: Anno4
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Annotation]
|
||||
superTypes: [
|
||||
[] kotlin/Annotation
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
@@ -88,13 +116,18 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: ABSTRACT
|
||||
name: I
|
||||
origin: SOURCE
|
||||
superTypes: [[] kotlin/Any]
|
||||
superTypes: [
|
||||
[] kotlin/Any
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
KtFirValueParameterSymbol:
|
||||
annotatedType: [Anno2()] @R|Anno2|() I
|
||||
annotatedType: [
|
||||
Anno2()
|
||||
psi: null
|
||||
] @R|Anno2|() I
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: null
|
||||
@@ -107,7 +140,10 @@ KtFirValueParameterSymbol:
|
||||
symbolKind: LOCAL
|
||||
|
||||
KtFirFunctionSymbol:
|
||||
annotatedType: [Anno3()] @R|Anno2|() I
|
||||
annotatedType: [
|
||||
Anno3()
|
||||
psi: null
|
||||
] @R|Anno2|() I
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /X.f
|
||||
@@ -127,11 +163,16 @@ KtFirFunctionSymbol:
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: []
|
||||
valueParameters: [KtFirValueParameterSymbol(arg)]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(arg)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
KtFirKotlinPropertySymbol:
|
||||
annotatedType: [Anno4()] @R|Anno2|() I
|
||||
annotatedType: [
|
||||
Anno4()
|
||||
psi: null
|
||||
] @R|Anno2|() I
|
||||
annotationClassIds: []
|
||||
annotations: []
|
||||
callableIdIfNonLocal: /X.x
|
||||
@@ -169,7 +210,12 @@ KtFirNamedClassOrObjectSymbol:
|
||||
modality: FINAL
|
||||
name: X
|
||||
origin: SOURCE
|
||||
superTypes: [[Anno1()] @R|Anno2|() I]
|
||||
superTypes: [
|
||||
[
|
||||
Anno1()
|
||||
psi: null
|
||||
] @R|Anno2|() I
|
||||
]
|
||||
symbolKind: TOP_LEVEL
|
||||
typeParameters: []
|
||||
visibility: Public
|
||||
|
||||
+6
-2
@@ -11,6 +11,10 @@ KtFirConstructorSymbol:
|
||||
origin: JAVA
|
||||
receiverType: null
|
||||
symbolKind: MEMBER
|
||||
typeParameters: [KtFirTypeParameterSymbol(E)]
|
||||
valueParameters: [KtFirValueParameterSymbol(p0)]
|
||||
typeParameters: [
|
||||
KtFirTypeParameterSymbol(E)
|
||||
]
|
||||
valueParameters: [
|
||||
KtFirValueParameterSymbol(p0)
|
||||
]
|
||||
visibility: Public
|
||||
|
||||
Reference in New Issue
Block a user