[AA] integrate KtReceiverParameterSymbol to KtCallableSymbol
^KT-54417
This commit is contained in:
committed by
Space Team
parent
b333a214ca
commit
2741052db3
+5
-7
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -8,14 +8,12 @@ package org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased
|
|||||||
import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.KtFe10DescMemberSymbol
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createContextReceivers
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktHasStableParameterNames
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -40,8 +38,8 @@ internal class KtFe10DescAnonymousFunctionSymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
||||||
|
|||||||
+4
-8
@@ -1,10 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -21,6 +16,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10Neve
|
|||||||
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -64,8 +60,8 @@ class KtFe10DescDefaultPropertyGetterSymbol(
|
|||||||
override val psi: PsiElement?
|
override val psi: PsiElement?
|
||||||
get() = withValidityAssertion { null }
|
get() = withValidityAssertion { null }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { propertyDescriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { propertyDescriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val modality: Modality
|
override val modality: Modality
|
||||||
get() = withValidityAssertion { propertyDescriptor.ktModality }
|
get() = withValidityAssertion { propertyDescriptor.ktModality }
|
||||||
|
|||||||
+4
-3
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
|||||||
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -66,8 +67,8 @@ internal class KtFe10DescDefaultPropertySetterSymbol(
|
|||||||
override val psi: PsiElement?
|
override val psi: PsiElement?
|
||||||
get() = withValidityAssertion { null }
|
get() = withValidityAssertion { null }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { propertyDescriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { propertyDescriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val modality: Modality
|
override val modality: Modality
|
||||||
get() = withValidityAssertion { propertyDescriptor.ktModality }
|
get() = withValidityAssertion { propertyDescriptor.ktModality }
|
||||||
|
|||||||
+4
-3
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,6 +15,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10Neve
|
|||||||
import org.jetbrains.kotlin.analysis.api.impl.base.util.kotlinFunctionInvokeCallableIds
|
import org.jetbrains.kotlin.analysis.api.impl.base.util.kotlinFunctionInvokeCallableIds
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
||||||
@@ -75,8 +76,8 @@ internal class KtFe10DescFunctionSymbol private constructor(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
||||||
|
|||||||
+5
-8
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -12,15 +12,12 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtKotlinPropertySymbol
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
|
import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
|
||||||
import org.jetbrains.kotlin.descriptors.impl.PropertyDescriptorImpl
|
import org.jetbrains.kotlin.descriptors.impl.PropertyDescriptorImpl
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
@@ -92,8 +89,8 @@ internal class KtFe10DescKotlinPropertySymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.type.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.type.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
||||||
|
|||||||
+5
-4
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,12 +10,13 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.PropertyGetterDescriptor
|
import org.jetbrains.kotlin.descriptors.PropertyGetterDescriptor
|
||||||
import org.jetbrains.kotlin.descriptors.hasBody
|
import org.jetbrains.kotlin.descriptors.hasBody
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
@@ -49,8 +50,8 @@ internal class KtFe10DescPropertyGetterSymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override fun createPointer(): KtSymbolPointer<KtPropertyGetterSymbol> = withValidityAssertion {
|
override fun createPointer(): KtSymbolPointer<KtPropertyGetterSymbol> = withValidityAssertion {
|
||||||
return KtPsiBasedSymbolPointer.createForSymbolFromSource<KtPropertyGetterSymbol>(this) ?: KtFe10NeverRestoringSymbolPointer()
|
return KtPsiBasedSymbolPointer.createForSymbolFromSource<KtPropertyGetterSymbol>(this) ?: KtFe10NeverRestoringSymbolPointer()
|
||||||
|
|||||||
+5
-4
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,12 +10,13 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.PropertySetterDescriptor
|
import org.jetbrains.kotlin.descriptors.PropertySetterDescriptor
|
||||||
import org.jetbrains.kotlin.descriptors.hasBody
|
import org.jetbrains.kotlin.descriptors.hasBody
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
@@ -51,8 +52,8 @@ internal class KtFe10DescPropertySetterSymbol(
|
|||||||
override val parameter: KtValueParameterSymbol
|
override val parameter: KtValueParameterSymbol
|
||||||
get() = withValidityAssertion { KtFe10DescValueParameterSymbol(descriptor.valueParameters.single(), analysisContext) }
|
get() = withValidityAssertion { KtFe10DescValueParameterSymbol(descriptor.valueParameters.single(), analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override fun createPointer(): KtSymbolPointer<KtPropertySetterSymbol> {
|
override fun createPointer(): KtSymbolPointer<KtPropertySetterSymbol> {
|
||||||
withValidityAssertion {
|
withValidityAssertion {
|
||||||
|
|||||||
+5
-8
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -12,14 +12,11 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.bas
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10DescSamConstructorSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10DescSamConstructorSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSamConstructorSymbol
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
import org.jetbrains.kotlin.analysis.api.symbols.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
import org.jetbrains.kotlin.name.Name
|
import org.jetbrains.kotlin.name.Name
|
||||||
import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
|
import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
|
||||||
@@ -48,8 +45,8 @@ internal class KtFe10DescSamConstructorSymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.returnTypeOrNothing.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
get() = withValidityAssertion { descriptor.createContextReceivers(analysisContext) }
|
||||||
|
|||||||
+4
-4
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -11,11 +11,11 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.*
|
import org.jetbrains.kotlin.analysis.api.symbols.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
|
import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
import org.jetbrains.kotlin.name.Name
|
import org.jetbrains.kotlin.name.Name
|
||||||
@@ -83,8 +83,8 @@ internal class KtFe10DescSyntheticJavaPropertySymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.type.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.type.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
|
|
||||||
override val typeParameters: List<KtTypeParameterSymbol>
|
override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
|
|||||||
+4
-4
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -11,11 +11,11 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.*
|
import org.jetbrains.kotlin.analysis.api.symbols.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
|
import org.jetbrains.kotlin.descriptors.ConstructorDescriptor
|
||||||
import org.jetbrains.kotlin.load.java.descriptors.JavaForKotlinOverridePropertyDescriptor
|
import org.jetbrains.kotlin.load.java.descriptors.JavaForKotlinOverridePropertyDescriptor
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
@@ -83,8 +83,8 @@ internal class KtFe10DescSyntheticJavaPropertySymbolForOverride(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor.type.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.type.toKtType(analysisContext) }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext) }
|
get() = withValidityAssertion { descriptor.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext) }
|
||||||
|
|
||||||
override val typeParameters: List<KtTypeParameterSymbol>
|
override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
get() = withValidityAssertion { descriptor.typeParameters.map { it.toKtTypeParameter(analysisContext) } }
|
get() = withValidityAssertion { descriptor.typeParameters.map { it.toKtTypeParameter(analysisContext) } }
|
||||||
|
|||||||
+6
-5
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -9,7 +9,9 @@ import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.KtFe10AnalysisSession
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createContextReceivers
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createContextReceivers
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
@@ -18,6 +20,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.creat
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -47,15 +50,13 @@ internal class KtFe10PsiAnonymousFunctionSymbol(
|
|||||||
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
||||||
}
|
}
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
if (!psi.isExtensionDeclaration()) {
|
if (!psi.isExtensionDeclaration()) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
val descriptor = this.descriptor ?: return createErrorType()
|
return descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
val extensionReceiverParameter = descriptor.extensionReceiverParameter ?: return null
|
|
||||||
return extensionReceiverParameter.type.toKtType(analysisContext)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
|
|||||||
+8
-6
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -14,6 +14,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.base.KtFe10Symbol
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
@@ -25,6 +26,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
|||||||
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -75,13 +77,13 @@ internal class KtFe10PsiDefaultPropertyGetterSymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType() }
|
get() = withValidityAssertion { descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType() }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
return if (propertyPsi.isExtensionDeclaration()) {
|
if (!propertyPsi.isExtensionDeclaration()) {
|
||||||
descriptor?.extensionReceiverParameter?.type?.toKtType(analysisContext) ?: createErrorType()
|
return null
|
||||||
} else {
|
|
||||||
null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
override val modality: Modality
|
override val modality: Modality
|
||||||
|
|||||||
+8
-6
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -14,6 +14,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.base.KtFe10Symbol
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
@@ -25,6 +26,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
|||||||
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
import org.jetbrains.kotlin.analysis.api.impl.base.annotations.KtEmptyAnnotationsList
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
import org.jetbrains.kotlin.analysis.api.symbols.KtSymbolOrigin
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -82,13 +84,13 @@ internal class KtFe10PsiDefaultPropertySetterSymbol(
|
|||||||
return analysisContext.builtIns.unitType.toKtType(analysisContext)
|
return analysisContext.builtIns.unitType.toKtType(analysisContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
return if (propertyPsi.isExtensionDeclaration()) {
|
if (!propertyPsi.isExtensionDeclaration()) {
|
||||||
descriptor?.extensionReceiverParameter?.type?.toKtType(analysisContext) ?: createErrorType()
|
return null
|
||||||
} else {
|
|
||||||
null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
override val modality: Modality
|
override val modality: Modality
|
||||||
|
|||||||
+5
-9
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -9,17 +9,15 @@ import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createContextReceivers
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
||||||
import org.jetbrains.kotlin.analysis.api.impl.base.util.kotlinFunctionInvokeCallableIds
|
import org.jetbrains.kotlin.analysis.api.impl.base.util.kotlinFunctionInvokeCallableIds
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
||||||
@@ -82,15 +80,13 @@ internal class KtFe10PsiFunctionSymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType() }
|
get() = withValidityAssertion { descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType() }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
if (!psi.isExtensionDeclaration()) {
|
if (!psi.isExtensionDeclaration()) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
val descriptor = this.descriptor ?: return createErrorType()
|
return descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
val extensionReceiverParameter = descriptor.extensionReceiverParameter ?: return null
|
|
||||||
return extensionReceiverParameter.type.toKtType(analysisContext)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
|
|||||||
+9
-19
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,27 +10,17 @@ import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
|
import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createKtInitializerValue
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.*
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.*
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktModality
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktSymbolKind
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktVisibility
|
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtKotlinPropertySymbol
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.Modality
|
import org.jetbrains.kotlin.descriptors.Modality
|
||||||
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
|
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
|
||||||
import org.jetbrains.kotlin.descriptors.Visibilities
|
import org.jetbrains.kotlin.descriptors.Visibilities
|
||||||
@@ -111,13 +101,13 @@ internal class KtFe10PsiKotlinPropertySymbol(
|
|||||||
override val returnType: KtType
|
override val returnType: KtType
|
||||||
get() = withValidityAssertion { descriptor?.type?.toKtType(analysisContext) ?: createErrorType() }
|
get() = withValidityAssertion { descriptor?.type?.toKtType(analysisContext) ?: createErrorType() }
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
return if (psi.isExtensionDeclaration()) {
|
if (!psi.isExtensionDeclaration()) {
|
||||||
descriptor?.extensionReceiverParameter?.type?.toKtType(analysisContext) ?: createErrorType()
|
return null
|
||||||
} else {
|
|
||||||
null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
|
|||||||
+9
-5
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,6 +10,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisContext
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.KtFe10DescValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.KtFe10DescValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createContextReceivers
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.createContextReceivers
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
@@ -18,6 +19,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.creat
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -54,11 +56,13 @@ internal class KtFe10PsiLiteralAnonymousFunctionSymbol(
|
|||||||
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
||||||
}
|
}
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
val descriptor = this.descriptor ?: return createErrorType()
|
if (!psi.isExtensionDeclaration()) {
|
||||||
val extensionReceiverParameter = descriptor.extensionReceiverParameter ?: return null
|
return null
|
||||||
extensionReceiverParameter.type.toKtType(analysisContext)
|
}
|
||||||
|
|
||||||
|
descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver>
|
override val contextReceivers: List<KtContextReceiver>
|
||||||
|
|||||||
+5
-8
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,6 +10,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.Analysis
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
@@ -20,6 +21,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktVis
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -73,14 +75,9 @@ internal class KtFe10PsiPropertyGetterSymbol(
|
|||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
||||||
}
|
}
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
val descriptor = this.descriptor
|
descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
return when {
|
|
||||||
descriptor != null -> descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext)
|
|
||||||
!psi.property.isTopLevel -> createErrorType()
|
|
||||||
else -> null
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun createPointer(): KtSymbolPointer<KtPropertyGetterSymbol> = withValidityAssertion {
|
override fun createPointer(): KtSymbolPointer<KtPropertyGetterSymbol> = withValidityAssertion {
|
||||||
|
|||||||
+6
-10
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,6 +10,7 @@ import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.Analysis
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.calculateHashCode
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktModality
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.ktVisibility
|
||||||
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtType
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KtFe10NeverRestoringSymbolPointer
|
||||||
@@ -18,12 +19,13 @@ import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.creat
|
|||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktModality
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktModality
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktVisibility
|
import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.ktVisibility
|
||||||
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
import org.jetbrains.kotlin.analysis.api.descriptors.utils.cached
|
||||||
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
|
||||||
import org.jetbrains.kotlin.descriptors.Modality
|
import org.jetbrains.kotlin.descriptors.Modality
|
||||||
import org.jetbrains.kotlin.descriptors.PropertySetterDescriptor
|
import org.jetbrains.kotlin.descriptors.PropertySetterDescriptor
|
||||||
import org.jetbrains.kotlin.descriptors.Visibilities
|
import org.jetbrains.kotlin.descriptors.Visibilities
|
||||||
@@ -31,7 +33,6 @@ import org.jetbrains.kotlin.descriptors.Visibility
|
|||||||
import org.jetbrains.kotlin.lexer.KtTokens
|
import org.jetbrains.kotlin.lexer.KtTokens
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
import org.jetbrains.kotlin.psi.KtPropertyAccessor
|
import org.jetbrains.kotlin.psi.KtPropertyAccessor
|
||||||
import org.jetbrains.kotlin.psi.psiUtil.isExtensionDeclaration
|
|
||||||
import org.jetbrains.kotlin.resolve.BindingContext
|
import org.jetbrains.kotlin.resolve.BindingContext
|
||||||
|
|
||||||
internal class KtFe10PsiPropertySetterSymbol(
|
internal class KtFe10PsiPropertySetterSymbol(
|
||||||
@@ -75,14 +76,9 @@ internal class KtFe10PsiPropertySetterSymbol(
|
|||||||
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
|
||||||
}
|
}
|
||||||
|
|
||||||
override val receiverType: KtType?
|
override val receiver: KtReceiverParameterSymbol?
|
||||||
get() = withValidityAssertion {
|
get() = withValidityAssertion {
|
||||||
val descriptor = this.descriptor
|
descriptor?.extensionReceiverParameter?.toKtReceiverParameterSymbol(analysisContext)
|
||||||
return when {
|
|
||||||
descriptor != null -> descriptor.extensionReceiverParameter?.type?.toKtType(analysisContext)
|
|
||||||
psi.property.isExtensionDeclaration() -> createErrorType()
|
|
||||||
else -> null
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override val parameter: KtValueParameterSymbol
|
override val parameter: KtValueParameterSymbol
|
||||||
|
|||||||
+3
-2
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,6 +15,7 @@ import org.jetbrains.kotlin.analysis.api.fir.utils.cached
|
|||||||
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtAnonymousFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.CanNotCreateSymbolPointerForLocalLibraryDeclarationException
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.CanNotCreateSymbolPointerForLocalLibraryDeclarationException
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
@@ -40,7 +41,7 @@ internal class KtFirAnonymousFunctionSymbol(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.receiver(builder) }
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
|
override val contextReceivers: List<KtContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -19,6 +19,7 @@ import org.jetbrains.kotlin.analysis.api.impl.base.util.kotlinFunctionInvokeCall
|
|||||||
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.CanNotCreateSymbolPointerForLocalLibraryDeclarationException
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.CanNotCreateSymbolPointerForLocalLibraryDeclarationException
|
||||||
@@ -50,7 +51,7 @@ internal class KtFirFunctionSymbol(
|
|||||||
get() = withValidityAssertion { callableIdIfNonLocal in kotlinFunctionInvokeCallableIds }
|
get() = withValidityAssertion { callableIdIfNonLocal in kotlinFunctionInvokeCallableIds }
|
||||||
|
|
||||||
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.receiver(builder) }
|
||||||
override val contextReceivers: List<KtContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
|
override val contextReceivers: List<KtContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
|
||||||
|
|
||||||
override val typeParameters by cached { firSymbol.createKtTypeParameters(builder) }
|
override val typeParameters by cached { firSymbol.createKtTypeParameters(builder) }
|
||||||
|
|||||||
+1
-1
@@ -61,7 +61,7 @@ internal class KtFirKotlinPropertySymbol(
|
|||||||
override val name: Name get() = withValidityAssertion { firSymbol.name }
|
override val name: Name get() = withValidityAssertion { firSymbol.name }
|
||||||
|
|
||||||
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.receiver(builder) }
|
||||||
|
|
||||||
override val contextReceivers: List<KtContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
|
override val contextReceivers: List<KtContextReceiver> by cached { firSymbol.createContextReceivers(builder) }
|
||||||
|
|
||||||
|
|||||||
+3
-2
@@ -15,6 +15,7 @@ import org.jetbrains.kotlin.analysis.api.fir.utils.cached
|
|||||||
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertyGetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -55,8 +56,8 @@ internal class KtFirPropertyGetterSymbol(
|
|||||||
|
|
||||||
|
|
||||||
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.fir.propertySymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.fir.propertySymbol.receiver(builder) }
|
||||||
|
|
||||||
override val annotationsList by cached { KtFirAnnotationListForDeclaration.create(firSymbol, firResolveSession.useSiteFirSession, token) }
|
override val annotationsList by cached { KtFirAnnotationListForDeclaration.create(firSymbol, firResolveSession.useSiteFirSession, token) }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+2
-1
@@ -15,6 +15,7 @@ import org.jetbrains.kotlin.analysis.api.fir.utils.cached
|
|||||||
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtPropertySetterSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtPsiBasedSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
@@ -92,7 +93,7 @@ internal class KtFirPropertySetterSymbol(
|
|||||||
override val valueParameters: List<KtValueParameterSymbol> by cached { listOf(parameter) }
|
override val valueParameters: List<KtValueParameterSymbol> by cached { listOf(parameter) }
|
||||||
|
|
||||||
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.fir.propertySymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.fir.propertySymbol.receiver(builder) }
|
||||||
|
|
||||||
|
|
||||||
override val hasStableParameterNames: Boolean
|
override val hasStableParameterNames: Boolean
|
||||||
|
|||||||
+3
-2
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,6 +15,7 @@ import org.jetbrains.kotlin.analysis.api.fir.symbols.pointers.KtFirSamConstructo
|
|||||||
import org.jetbrains.kotlin.analysis.api.fir.utils.cached
|
import org.jetbrains.kotlin.analysis.api.fir.utils.cached
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
|
||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtSamConstructorSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtSamConstructorSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtTypeParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
import org.jetbrains.kotlin.analysis.api.symbols.KtValueParameterSymbol
|
||||||
@@ -59,7 +60,7 @@ internal class KtFirSamConstructorSymbol(
|
|||||||
|
|
||||||
override val isExtension: Boolean get() = withValidityAssertion { firSymbol.isExtension }
|
override val isExtension: Boolean get() = withValidityAssertion { firSymbol.isExtension }
|
||||||
|
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.receiver(builder) }
|
||||||
|
|
||||||
override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { firSymbol.getCallableIdIfNonLocal() }
|
override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { firSymbol.getCallableIdIfNonLocal() }
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -43,7 +43,7 @@ internal class KtFirSyntheticJavaPropertySymbol(
|
|||||||
override val name: Name get() = withValidityAssertion { firSymbol.name }
|
override val name: Name get() = withValidityAssertion { firSymbol.name }
|
||||||
|
|
||||||
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
override val returnType: KtType get() = withValidityAssertion { firSymbol.returnType(builder) }
|
||||||
override val receiverType: KtType? get() = withValidityAssertion { firSymbol.receiverType(builder) }
|
override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { firSymbol.receiver(builder) }
|
||||||
|
|
||||||
override val typeParameters: List<KtTypeParameterSymbol>
|
override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
get() = withValidityAssertion { firSymbol.createKtTypeParameters(builder) }
|
get() = withValidityAssertion { firSymbol.createKtTypeParameters(builder) }
|
||||||
|
|||||||
+4
-1
@@ -6,13 +6,13 @@
|
|||||||
package org.jetbrains.kotlin.analysis.api.fir.symbols
|
package org.jetbrains.kotlin.analysis.api.fir.symbols
|
||||||
|
|
||||||
import org.jetbrains.kotlin.analysis.api.fir.KtSymbolByFirBuilder
|
import org.jetbrains.kotlin.analysis.api.fir.KtSymbolByFirBuilder
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtReceiverParameterSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
import org.jetbrains.kotlin.analysis.api.types.KtType
|
||||||
import org.jetbrains.kotlin.fir.declarations.FirResolvePhase
|
import org.jetbrains.kotlin.fir.declarations.FirResolvePhase
|
||||||
import org.jetbrains.kotlin.fir.resolve.transformers.resolveSupertypesInTheAir
|
import org.jetbrains.kotlin.fir.resolve.transformers.resolveSupertypesInTheAir
|
||||||
import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
|
import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
|
||||||
import org.jetbrains.kotlin.fir.symbols.impl.FirClassSymbol
|
import org.jetbrains.kotlin.fir.symbols.impl.FirClassSymbol
|
||||||
import org.jetbrains.kotlin.fir.symbols.impl.FirRegularClassSymbol
|
import org.jetbrains.kotlin.fir.symbols.impl.FirRegularClassSymbol
|
||||||
import org.jetbrains.kotlin.fir.types.FirResolvedTypeRef
|
|
||||||
import org.jetbrains.kotlin.fir.types.FirTypeRef
|
import org.jetbrains.kotlin.fir.types.FirTypeRef
|
||||||
|
|
||||||
|
|
||||||
@@ -38,6 +38,9 @@ private fun List<FirTypeRef>.mapToKtType(
|
|||||||
internal fun FirCallableSymbol<*>.returnType(builder: KtSymbolByFirBuilder): KtType =
|
internal fun FirCallableSymbol<*>.returnType(builder: KtSymbolByFirBuilder): KtType =
|
||||||
builder.typeBuilder.buildKtType(resolvedReturnType)
|
builder.typeBuilder.buildKtType(resolvedReturnType)
|
||||||
|
|
||||||
|
internal fun FirCallableSymbol<*>.receiver(builder: KtSymbolByFirBuilder): KtReceiverParameterSymbol? =
|
||||||
|
builder.callableBuilder.buildExtensionReceiverSymbol(this)
|
||||||
|
|
||||||
internal fun FirCallableSymbol<*>.receiverType(builder: KtSymbolByFirBuilder): KtType? =
|
internal fun FirCallableSymbol<*>.receiverType(builder: KtSymbolByFirBuilder): KtType? =
|
||||||
resolvedReceiverTypeRef?.let { receiver ->
|
resolvedReceiverTypeRef?.let { receiver ->
|
||||||
builder.typeBuilder.buildKtType(receiver)
|
builder.typeBuilder.buildKtType(receiver)
|
||||||
|
|||||||
+7
-5
@@ -9,7 +9,9 @@ import org.jetbrains.kotlin.analysis.api.components.KtSignatureSubstitutor
|
|||||||
import org.jetbrains.kotlin.analysis.api.signatures.KtCallableSignature
|
import org.jetbrains.kotlin.analysis.api.signatures.KtCallableSignature
|
||||||
import org.jetbrains.kotlin.analysis.api.signatures.KtFunctionLikeSignature
|
import org.jetbrains.kotlin.analysis.api.signatures.KtFunctionLikeSignature
|
||||||
import org.jetbrains.kotlin.analysis.api.signatures.KtVariableLikeSignature
|
import org.jetbrains.kotlin.analysis.api.signatures.KtVariableLikeSignature
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.*
|
import org.jetbrains.kotlin.analysis.api.symbols.KtCallableSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtFunctionLikeSymbol
|
||||||
|
import org.jetbrains.kotlin.analysis.api.symbols.KtVariableLikeSymbol
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtSubstitutor
|
import org.jetbrains.kotlin.analysis.api.types.KtSubstitutor
|
||||||
import org.jetbrains.kotlin.analysis.utils.errors.unexpectedElementError
|
import org.jetbrains.kotlin.analysis.utils.errors.unexpectedElementError
|
||||||
|
|
||||||
@@ -45,7 +47,7 @@ abstract class AbstractKtSignatureSubstitutorImpl : KtSignatureSubstitutor() {
|
|||||||
return KtFunctionLikeSignature(
|
return KtFunctionLikeSignature(
|
||||||
symbol,
|
symbol,
|
||||||
substitutor.substitute(symbol.returnType),
|
substitutor.substitute(symbol.returnType),
|
||||||
symbol.receiverType?.let { substitutor.substitute(it) },
|
symbol.receiver?.type?.let { substitutor.substitute(it) },
|
||||||
symbol.valueParameters.map { substitute(it, substitutor) }
|
symbol.valueParameters.map { substitute(it, substitutor) }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -55,7 +57,7 @@ abstract class AbstractKtSignatureSubstitutorImpl : KtSignatureSubstitutor() {
|
|||||||
return KtVariableLikeSignature(
|
return KtVariableLikeSignature(
|
||||||
symbol,
|
symbol,
|
||||||
substitutor.substitute(symbol.returnType),
|
substitutor.substitute(symbol.returnType),
|
||||||
symbol.receiverType?.let { substitutor.substitute(it) },
|
symbol.receiver?.type?.let { substitutor.substitute(it) },
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,10 +70,10 @@ abstract class AbstractKtSignatureSubstitutorImpl : KtSignatureSubstitutor() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun <S : KtFunctionLikeSymbol> asSignature(symbol: S): KtFunctionLikeSignature<S> {
|
override fun <S : KtFunctionLikeSymbol> asSignature(symbol: S): KtFunctionLikeSignature<S> {
|
||||||
return KtFunctionLikeSignature(symbol, symbol.returnType, symbol.receiverType, symbol.valueParameters.map { asSignature(it) })
|
return KtFunctionLikeSignature(symbol, symbol.returnType, symbol.receiver?.type, symbol.valueParameters.map { asSignature(it) })
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun <S : KtVariableLikeSymbol> asSignature(symbol: S): KtVariableLikeSignature<S> {
|
override fun <S : KtVariableLikeSymbol> asSignature(symbol: S): KtVariableLikeSignature<S> {
|
||||||
return KtVariableLikeSignature(symbol, symbol.returnType, symbol.receiverType)
|
return KtVariableLikeSignature(symbol, symbol.returnType, symbol.receiver?.type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+2
-2
@@ -102,7 +102,7 @@ abstract class AbstractAnalysisApiSignatureContractsTest : AbstractAnalysisApiSi
|
|||||||
substitutor: KtSubstitutor,
|
substitutor: KtSubstitutor,
|
||||||
testServices: TestServices
|
testServices: TestServices
|
||||||
) {
|
) {
|
||||||
testServices.assertions.assertEquals(symbol.receiverType?.let(substitutor::substitute), signature.receiverType)
|
testServices.assertions.assertEquals(symbol.receiver?.type?.let(substitutor::substitute), signature.receiverType)
|
||||||
testServices.assertions.assertEquals(symbol.returnType.let(substitutor::substitute), signature.returnType)
|
testServices.assertions.assertEquals(symbol.returnType.let(substitutor::substitute), signature.returnType)
|
||||||
|
|
||||||
testServices.assertions.assertEquals(symbol.valueParameters.size, signature.valueParameters.size)
|
testServices.assertions.assertEquals(symbol.valueParameters.size, signature.valueParameters.size)
|
||||||
@@ -118,7 +118,7 @@ abstract class AbstractAnalysisApiSignatureContractsTest : AbstractAnalysisApiSi
|
|||||||
substitutor: KtSubstitutor,
|
substitutor: KtSubstitutor,
|
||||||
testServices: TestServices
|
testServices: TestServices
|
||||||
) {
|
) {
|
||||||
testServices.assertions.assertEquals(symbol.receiverType?.let(substitutor::substitute), signature.receiverType)
|
testServices.assertions.assertEquals(symbol.receiver?.type?.let(substitutor::substitute), signature.receiverType)
|
||||||
testServices.assertions.assertEquals(symbol.returnType.let(substitutor::substitute), signature.returnType)
|
testServices.assertions.assertEquals(symbol.returnType.let(substitutor::substitute), signature.returnType)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -47,8 +47,8 @@ internal fun KtAnalysisSession.stringRepresentation(any: Any): String = with(any
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
append("(")
|
append("(")
|
||||||
(this@with as? KtFunctionSymbol)?.receiverType?.let { receiver ->
|
(this@with as? KtFunctionSymbol)?.receiver?.let { receiver ->
|
||||||
append("<extension receiver>: ${receiver.render()}")
|
append("<extension receiver>: ${receiver.type.render()}")
|
||||||
if (valueParameters.isNotEmpty()) append(", ")
|
if (valueParameters.isNotEmpty()) append(", ")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -107,14 +107,14 @@ public class DebugSymbolRenderer(
|
|||||||
}
|
}
|
||||||
|
|
||||||
context(KtAnalysisSession)
|
context(KtAnalysisSession)
|
||||||
private fun PrettyPrinter.renderSymbolInternals(symbol: KtSymbol) {
|
private fun PrettyPrinter.renderSymbolInternals(symbol: KtSymbol, customIgnoredPropertynames: List<String> = emptyList()) {
|
||||||
renderSymbolHeader(symbol)
|
renderSymbolHeader(symbol)
|
||||||
val apiClass = getSymbolApiClass(symbol)
|
val apiClass = getSymbolApiClass(symbol)
|
||||||
withIndent {
|
withIndent {
|
||||||
apiClass.members
|
apiClass.members
|
||||||
.asSequence()
|
.asSequence()
|
||||||
.filterIsInstance<KProperty<*>>()
|
.filterIsInstance<KProperty<*>>()
|
||||||
.filter { it.name !in ignoredPropertyNames }
|
.filter { it.name !in ignoredPropertyNames && it.name !in customIgnoredPropertynames }
|
||||||
.sortedBy { it.name }
|
.sortedBy { it.name }
|
||||||
.forEach { member ->
|
.forEach { member ->
|
||||||
renderProperty(
|
renderProperty(
|
||||||
@@ -155,7 +155,7 @@ public class DebugSymbolRenderer(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (renderSymbolsFully || symbol is KtPropertyGetterSymbol || symbol is KtPropertySetterSymbol || symbol is KtValueParameterSymbol) {
|
if (renderSymbolsFully || symbol is KtPropertyGetterSymbol || symbol is KtPropertySetterSymbol || symbol is KtValueParameterSymbol || symbol is KtReceiverParameterSymbol) {
|
||||||
renderSymbol(symbol)
|
renderSymbol(symbol)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -17,7 +17,7 @@ public sealed class KtCallableSymbol : KtSymbolWithKind, KtPossibleMemberSymbol,
|
|||||||
public abstract val callableIdIfNonLocal: CallableId?
|
public abstract val callableIdIfNonLocal: CallableId?
|
||||||
public abstract val returnType: KtType
|
public abstract val returnType: KtType
|
||||||
|
|
||||||
public abstract val receiverType: KtType?
|
public abstract val receiver: KtReceiverParameterSymbol?
|
||||||
public abstract val isExtension: Boolean
|
public abstract val isExtension: Boolean
|
||||||
|
|
||||||
abstract override fun createPointer(): KtSymbolPointer<KtCallableSymbol>
|
abstract override fun createPointer(): KtSymbolPointer<KtCallableSymbol>
|
||||||
|
|||||||
+2
-3
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -9,7 +9,6 @@ import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
|||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.*
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
import org.jetbrains.kotlin.name.ClassId
|
import org.jetbrains.kotlin.name.ClassId
|
||||||
|
|
||||||
@@ -74,7 +73,7 @@ public abstract class KtConstructorSymbol : KtFunctionLikeSymbol(),
|
|||||||
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
||||||
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
|
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
|
||||||
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
||||||
final override val receiverType: KtType? get() = withValidityAssertion { null }
|
final override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { null }
|
||||||
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
||||||
|
|
||||||
abstract override fun createPointer(): KtSymbolPointer<KtConstructorSymbol>
|
abstract override fun createPointer(): KtSymbolPointer<KtConstructorSymbol>
|
||||||
|
|||||||
+6
-7
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -13,7 +13,6 @@ import org.jetbrains.kotlin.analysis.api.base.KtContextReceiver
|
|||||||
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.markers.*
|
import org.jetbrains.kotlin.analysis.api.symbols.markers.*
|
||||||
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||||
import org.jetbrains.kotlin.analysis.api.types.KtType
|
|
||||||
import org.jetbrains.kotlin.builtins.StandardNames
|
import org.jetbrains.kotlin.builtins.StandardNames
|
||||||
import org.jetbrains.kotlin.name.CallableId
|
import org.jetbrains.kotlin.name.CallableId
|
||||||
import org.jetbrains.kotlin.name.ClassId
|
import org.jetbrains.kotlin.name.ClassId
|
||||||
@@ -44,7 +43,7 @@ public abstract class KtBackingFieldSymbol : KtVariableLikeSymbol() {
|
|||||||
override val origin: KtSymbolOrigin get() = withValidityAssertion { KtSymbolOrigin.PROPERTY_BACKING_FIELD }
|
override val origin: KtSymbolOrigin get() = withValidityAssertion { KtSymbolOrigin.PROPERTY_BACKING_FIELD }
|
||||||
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
||||||
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
||||||
final override val receiverType: KtType? get() = withValidityAssertion { null }
|
final override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { null }
|
||||||
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
||||||
|
|
||||||
final override val typeParameters: List<KtTypeParameterSymbol>
|
final override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
@@ -61,7 +60,7 @@ public abstract class KtBackingFieldSymbol : KtVariableLikeSymbol() {
|
|||||||
public abstract class KtEnumEntrySymbol : KtVariableLikeSymbol(), KtSymbolWithMembers, KtSymbolWithKind {
|
public abstract class KtEnumEntrySymbol : KtVariableLikeSymbol(), KtSymbolWithMembers, KtSymbolWithKind {
|
||||||
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
|
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
|
||||||
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
||||||
final override val receiverType: KtType? get() = withValidityAssertion { null }
|
final override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { null }
|
||||||
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
||||||
|
|
||||||
final override val typeParameters: List<KtTypeParameterSymbol>
|
final override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
@@ -86,7 +85,7 @@ public abstract class KtJavaFieldSymbol :
|
|||||||
KtSymbolWithKind {
|
KtSymbolWithKind {
|
||||||
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
|
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
|
||||||
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
||||||
final override val receiverType: KtType? get() = withValidityAssertion { null }
|
final override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { null }
|
||||||
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
||||||
|
|
||||||
final override val typeParameters: List<KtTypeParameterSymbol>
|
final override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
@@ -157,7 +156,7 @@ public abstract class KtSyntheticJavaPropertySymbol : KtPropertySymbol() {
|
|||||||
public abstract class KtLocalVariableSymbol : KtVariableSymbol(), KtSymbolWithKind {
|
public abstract class KtLocalVariableSymbol : KtVariableSymbol(), KtSymbolWithKind {
|
||||||
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
||||||
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
||||||
final override val receiverType: KtType? get() = withValidityAssertion { null }
|
final override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { null }
|
||||||
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
||||||
|
|
||||||
final override val typeParameters: List<KtTypeParameterSymbol>
|
final override val typeParameters: List<KtTypeParameterSymbol>
|
||||||
@@ -170,7 +169,7 @@ public abstract class KtValueParameterSymbol : KtVariableLikeSymbol(), KtSymbolW
|
|||||||
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.LOCAL }
|
final override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.LOCAL }
|
||||||
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
final override val callableIdIfNonLocal: CallableId? get() = withValidityAssertion { null }
|
||||||
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
final override val isExtension: Boolean get() = withValidityAssertion { false }
|
||||||
final override val receiverType: KtType? get() = withValidityAssertion { null }
|
final override val receiver: KtReceiverParameterSymbol? get() = withValidityAssertion { null }
|
||||||
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
final override val contextReceivers: List<KtContextReceiver> get() = withValidityAssertion { emptyList() }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+10
-10
@@ -78,7 +78,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, kotlin/collections/Map<Y, O>>
|
returnType: kotlin/collections/Map<X, kotlin/collections/Map<Y, O>>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -98,7 +98,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: X
|
returnType: X
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -115,7 +115,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Y
|
returnType: Y
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -137,7 +137,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, O>
|
returnType: kotlin/collections/Map<X, O>
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -158,7 +158,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: map
|
name: map
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, O>
|
returnType: kotlin/collections/Map<X, O>
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -181,7 +181,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: fromSuper
|
name: fromSuper
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: O
|
returnType: O
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -204,7 +204,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -222,7 +222,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -245,7 +245,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -268,7 +268,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+24
-24
@@ -168,7 +168,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: contains
|
name: contains
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -186,7 +186,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -209,7 +209,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: containsAll
|
name: containsAll
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -227,7 +227,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -250,7 +250,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: get
|
name: get
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -268,7 +268,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -291,7 +291,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: indexOf
|
name: indexOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -309,7 +309,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -332,7 +332,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: isEmpty
|
name: isEmpty
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -355,7 +355,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: iterator
|
name: iterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Iterator<E>
|
returnType: kotlin/collections/Iterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -378,7 +378,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: lastIndexOf
|
name: lastIndexOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -396,7 +396,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -419,7 +419,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -442,7 +442,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -460,7 +460,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -483,7 +483,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: subList
|
name: subList
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<E>
|
returnType: kotlin/collections/List<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -501,7 +501,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: fromIndex
|
name: fromIndex
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -518,7 +518,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: toIndex
|
name: toIndex
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -540,7 +540,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -561,7 +561,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: size
|
name: size
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -584,7 +584,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -602,7 +602,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -625,7 +625,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -648,7 +648,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+9
-9
@@ -72,7 +72,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, kotlin/collections/Map<Y, O>>
|
returnType: kotlin/collections/Map<X, kotlin/collections/Map<Y, O>>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -92,7 +92,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: X
|
returnType: X
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -109,7 +109,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Y
|
returnType: Y
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -131,7 +131,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, O>
|
returnType: kotlin/collections/Map<X, O>
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -152,7 +152,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: map
|
name: map
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, O>
|
returnType: kotlin/collections/Map<X, O>
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -175,7 +175,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -193,7 +193,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -216,7 +216,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -239,7 +239,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+9
-9
@@ -72,7 +72,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, Y>
|
returnType: kotlin/collections/Map<X, Y>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -92,7 +92,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: X
|
returnType: X
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -109,7 +109,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Y
|
returnType: Y
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -131,7 +131,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, kotlin/String>
|
returnType: kotlin/collections/Map<X, kotlin/String>
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -152,7 +152,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: map
|
name: map
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Map<X, kotlin/String>
|
returnType: kotlin/collections/Map<X, kotlin/String>
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -175,7 +175,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -193,7 +193,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -216,7 +216,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -239,7 +239,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+24
-24
@@ -168,7 +168,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: contains
|
name: contains
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -186,7 +186,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -209,7 +209,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: containsAll
|
name: containsAll
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -227,7 +227,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -250,7 +250,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: get
|
name: get
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -268,7 +268,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -291,7 +291,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: indexOf
|
name: indexOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -309,7 +309,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -332,7 +332,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: isEmpty
|
name: isEmpty
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -355,7 +355,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: iterator
|
name: iterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Iterator<E>
|
returnType: kotlin/collections/Iterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -378,7 +378,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: lastIndexOf
|
name: lastIndexOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -396,7 +396,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -419,7 +419,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -442,7 +442,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -460,7 +460,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -483,7 +483,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: subList
|
name: subList
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<E>
|
returnType: kotlin/collections/List<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -501,7 +501,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: fromIndex
|
name: fromIndex
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -518,7 +518,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: toIndex
|
name: toIndex
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -540,7 +540,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -561,7 +561,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: size
|
name: size
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -584,7 +584,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -602,7 +602,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -625,7 +625,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -648,7 +648,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+2
-2
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: OPEN
|
modality: OPEN
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: foo
|
name: foo
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
+1
-1
@@ -18,7 +18,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: foo
|
name: foo
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
@@ -18,7 +18,10 @@ KtKotlinPropertySymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: zoo
|
name: zoo
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: DELEGATED
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -49,7 +52,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: foo
|
name: foo
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -79,7 +82,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: foo
|
name: foo
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -110,7 +113,10 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: smth
|
name: smth
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: DELEGATED
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -140,7 +146,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: bar
|
name: bar
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -174,7 +180,10 @@ KtKotlinPropertySymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: doo
|
name: doo
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: DELEGATED
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: bar
|
name: bar
|
||||||
origin: DELEGATED
|
origin: DELEGATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+62
-50
@@ -26,7 +26,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: function
|
name: function
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -55,7 +55,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: functionWithDefault
|
name: functionWithDefault
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -73,7 +73,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: par1
|
name: par1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -100,7 +100,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -123,7 +123,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: testVal
|
name: testVal
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -152,7 +152,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -175,7 +175,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: initializedVariable
|
name: initializedVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -202,13 +202,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -226,7 +226,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -262,7 +262,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -285,7 +285,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: unitializedVariable
|
name: unitializedVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -312,13 +312,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -336,7 +336,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -372,7 +372,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -395,7 +395,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: lateinitVariable
|
name: lateinitVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -422,13 +422,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -446,7 +446,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -482,7 +482,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -505,7 +505,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: variableWithBackingField
|
name: variableWithBackingField
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -532,13 +532,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -556,7 +556,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -592,7 +592,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -615,7 +615,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: privateSetter
|
name: privateSetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -645,13 +645,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -669,7 +669,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -705,7 +705,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -728,7 +728,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: jvmNameOnSetter
|
name: jvmNameOnSetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -758,13 +758,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -782,7 +782,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -821,7 +821,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -844,7 +844,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: customGetter
|
name: customGetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -876,7 +876,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -899,7 +899,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: jvmNameOnGetter
|
name: jvmNameOnGetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -928,7 +928,10 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -951,7 +954,10 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: propertyWithReceiver
|
name: propertyWithReceiver
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -980,7 +986,10 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: T
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: T
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1003,7 +1012,10 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: propertyWithGenericReceiver
|
name: propertyWithGenericReceiver
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: T
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: T
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -1034,7 +1046,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1057,7 +1069,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: constant
|
name: constant
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -1086,7 +1098,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1109,7 +1121,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: jvmField
|
name: jvmField
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -1136,13 +1148,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1160,7 +1172,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: function
|
name: function
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -55,7 +55,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: functionWithDefault
|
name: functionWithDefault
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -73,7 +73,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: par1
|
name: par1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -100,7 +100,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -123,7 +123,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: testVal
|
name: testVal
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -152,7 +152,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -175,7 +175,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: initializedVariable
|
name: initializedVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -202,13 +202,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -226,7 +226,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -262,7 +262,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -285,7 +285,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: unitializedVariable
|
name: unitializedVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -312,13 +312,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -336,7 +336,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -372,7 +372,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -395,7 +395,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: lateinitVariable
|
name: lateinitVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -422,13 +422,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -446,7 +446,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -482,7 +482,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -505,7 +505,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: variableWithBackingField
|
name: variableWithBackingField
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -532,13 +532,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -556,7 +556,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -592,7 +592,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -615,7 +615,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: privateSetter
|
name: privateSetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -645,13 +645,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -669,7 +669,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -705,7 +705,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -728,7 +728,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: jvmNameOnSetter
|
name: jvmNameOnSetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -758,13 +758,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -782,7 +782,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -821,7 +821,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -844,7 +844,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: customGetter
|
name: customGetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -876,7 +876,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -899,7 +899,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: jvmNameOnGetter
|
name: jvmNameOnGetter
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -928,7 +928,10 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -951,7 +954,10 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: propertyWithReceiver
|
name: propertyWithReceiver
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: kotlin/Int
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: kotlin/Int
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -980,7 +986,10 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: T
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: T
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1003,7 +1012,10 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: propertyWithGenericReceiver
|
name: propertyWithGenericReceiver
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: T
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: T
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -1034,7 +1046,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1057,7 +1069,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: constant
|
name: constant
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -1089,7 +1101,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1112,7 +1124,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: jvmField
|
name: jvmField
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -1139,13 +1151,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1163,7 +1175,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: test
|
name: test
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -51,7 +51,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -74,7 +74,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: testVal
|
name: testVal
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
+119
-119
@@ -18,7 +18,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: and
|
name: and
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -36,7 +36,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -68,7 +68,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -86,7 +86,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -118,7 +118,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -136,7 +136,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -168,7 +168,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -186,7 +186,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -218,7 +218,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -236,7 +236,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -268,7 +268,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -286,7 +286,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -318,7 +318,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -336,7 +336,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -365,7 +365,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: dec
|
name: dec
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -395,7 +395,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: div
|
name: div
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -413,7 +413,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -445,7 +445,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: div
|
name: div
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -463,7 +463,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -495,7 +495,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: div
|
name: div
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -513,7 +513,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -545,7 +545,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: div
|
name: div
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -563,7 +563,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -595,7 +595,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: div
|
name: div
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -613,7 +613,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -645,7 +645,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: div
|
name: div
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -663,7 +663,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -695,7 +695,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -713,7 +713,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -742,7 +742,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: inc
|
name: inc
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -772,7 +772,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: inv
|
name: inv
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -802,7 +802,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: minus
|
name: minus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -820,7 +820,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -852,7 +852,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: minus
|
name: minus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -870,7 +870,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -902,7 +902,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: minus
|
name: minus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -920,7 +920,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -952,7 +952,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: minus
|
name: minus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -970,7 +970,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1002,7 +1002,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: minus
|
name: minus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1020,7 +1020,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1052,7 +1052,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: minus
|
name: minus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1070,7 +1070,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1102,7 +1102,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: or
|
name: or
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1120,7 +1120,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1152,7 +1152,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: plus
|
name: plus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1170,7 +1170,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1202,7 +1202,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: plus
|
name: plus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1220,7 +1220,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1252,7 +1252,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: plus
|
name: plus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1270,7 +1270,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1302,7 +1302,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: plus
|
name: plus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1320,7 +1320,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1352,7 +1352,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: plus
|
name: plus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1370,7 +1370,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1402,7 +1402,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: plus
|
name: plus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1420,7 +1420,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1449,7 +1449,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeTo
|
name: rangeTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/IntRange
|
returnType: kotlin/ranges/IntRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1467,7 +1467,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1496,7 +1496,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeTo
|
name: rangeTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/IntRange
|
returnType: kotlin/ranges/IntRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1514,7 +1514,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1543,7 +1543,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeTo
|
name: rangeTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/LongRange
|
returnType: kotlin/ranges/LongRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1561,7 +1561,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1590,7 +1590,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeTo
|
name: rangeTo
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/IntRange
|
returnType: kotlin/ranges/IntRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1608,7 +1608,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1642,7 +1642,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeUntil
|
name: rangeUntil
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/IntRange
|
returnType: kotlin/ranges/IntRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1660,7 +1660,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1694,7 +1694,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeUntil
|
name: rangeUntil
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/IntRange
|
returnType: kotlin/ranges/IntRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1712,7 +1712,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1746,7 +1746,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeUntil
|
name: rangeUntil
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/LongRange
|
returnType: kotlin/ranges/LongRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1764,7 +1764,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1798,7 +1798,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rangeUntil
|
name: rangeUntil
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/ranges/IntRange
|
returnType: kotlin/ranges/IntRange
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1816,7 +1816,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1850,7 +1850,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rem
|
name: rem
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1868,7 +1868,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1902,7 +1902,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rem
|
name: rem
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1920,7 +1920,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1954,7 +1954,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rem
|
name: rem
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1972,7 +1972,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2006,7 +2006,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rem
|
name: rem
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2024,7 +2024,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2058,7 +2058,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rem
|
name: rem
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2076,7 +2076,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2110,7 +2110,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: rem
|
name: rem
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2128,7 +2128,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2160,7 +2160,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: shl
|
name: shl
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2178,7 +2178,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: bitCount
|
name: bitCount
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2210,7 +2210,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: shr
|
name: shr
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2228,7 +2228,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: bitCount
|
name: bitCount
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2260,7 +2260,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: times
|
name: times
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2278,7 +2278,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2310,7 +2310,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: times
|
name: times
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2328,7 +2328,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2360,7 +2360,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: times
|
name: times
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2378,7 +2378,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2410,7 +2410,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: times
|
name: times
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2428,7 +2428,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2460,7 +2460,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: times
|
name: times
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2478,7 +2478,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2510,7 +2510,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: times
|
name: times
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2528,7 +2528,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2560,7 +2560,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toByte
|
name: toByte
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Byte
|
returnType: kotlin/Byte
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2590,7 +2590,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toChar
|
name: toChar
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Char
|
returnType: kotlin/Char
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2620,7 +2620,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toDouble
|
name: toDouble
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Double
|
returnType: kotlin/Double
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2650,7 +2650,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toFloat
|
name: toFloat
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Float
|
returnType: kotlin/Float
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2680,7 +2680,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toInt
|
name: toInt
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2710,7 +2710,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toLong
|
name: toLong
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Long
|
returnType: kotlin/Long
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2740,7 +2740,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toShort
|
name: toShort
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Short
|
returnType: kotlin/Short
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2770,7 +2770,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2800,7 +2800,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: unaryMinus
|
name: unaryMinus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2830,7 +2830,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: unaryPlus
|
name: unaryPlus
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2860,7 +2860,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: ushr
|
name: ushr
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2878,7 +2878,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: bitCount
|
name: bitCount
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2910,7 +2910,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: xor
|
name: xor
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2928,7 +2928,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2957,7 +2957,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -2999,7 +2999,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: false
|
isPrimary: false
|
||||||
origin: JAVA
|
origin: JAVA
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: java/lang/Integer
|
returnType: java/lang/Integer
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -3017,7 +3017,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -3037,7 +3037,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+46
-46
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: add
|
name: add
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -33,7 +33,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -62,7 +62,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: add
|
name: add
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -80,7 +80,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -99,7 +99,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -128,7 +128,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: addAll
|
name: addAll
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -146,7 +146,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -165,7 +165,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -194,7 +194,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: addAll
|
name: addAll
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -212,7 +212,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -241,7 +241,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: clear
|
name: clear
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -268,7 +268,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/MutableListIterator<E>
|
returnType: kotlin/collections/MutableListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -295,7 +295,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/MutableListIterator<E>
|
returnType: kotlin/collections/MutableListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -313,7 +313,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -342,7 +342,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: remove
|
name: remove
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -360,7 +360,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -389,7 +389,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: removeAll
|
name: removeAll
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -407,7 +407,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -436,7 +436,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: removeAt
|
name: removeAt
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -454,7 +454,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -483,7 +483,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: retainAll
|
name: retainAll
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -501,7 +501,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -530,7 +530,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: set
|
name: set
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -548,7 +548,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -567,7 +567,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -596,7 +596,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: subList
|
name: subList
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/MutableList<E>
|
returnType: kotlin/collections/MutableList<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -614,7 +614,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: fromIndex
|
name: fromIndex
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -633,7 +633,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: toIndex
|
name: toIndex
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -662,7 +662,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: contains
|
name: contains
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -680,7 +680,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -709,7 +709,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: containsAll
|
name: containsAll
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -727,7 +727,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: elements
|
name: elements
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/Collection<E>
|
returnType: kotlin/collections/Collection<E>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -756,7 +756,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: get
|
name: get
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -774,7 +774,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -803,7 +803,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: indexOf
|
name: indexOf
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -821,7 +821,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -850,7 +850,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: isEmpty
|
name: isEmpty
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -877,7 +877,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: iterator
|
name: iterator
|
||||||
origin: INTERSECTION_OVERRIDE
|
origin: INTERSECTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/MutableIterator<E>
|
returnType: kotlin/collections/MutableIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -904,7 +904,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: lastIndexOf
|
name: lastIndexOf
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -922,7 +922,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -950,7 +950,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -974,7 +974,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: size
|
name: size
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -1005,7 +1005,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1023,7 +1023,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1052,7 +1052,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -1079,7 +1079,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -69,7 +69,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: clone
|
name: clone
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any
|
returnType: kotlin/Any
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -96,7 +96,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: compareTo
|
name: compareTo
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -114,7 +114,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/E
|
returnType: test/E
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -143,7 +143,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -161,7 +161,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -190,7 +190,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -217,7 +217,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -246,7 +246,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -270,7 +270,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: name
|
name: name
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -300,7 +300,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -324,7 +324,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: ordinal
|
name: ordinal
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -355,7 +355,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: getDeclaringClass
|
name: getDeclaringClass
|
||||||
origin: SUBSTITUTION_OVERRIDE
|
origin: SUBSTITUTION_OVERRIDE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: ft<java/lang/Class<test/E!>, java/lang/Class<test/E!>?>
|
returnType: ft<java/lang/Class<test/E!>, java/lang/Class<test/E!>?>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+189
-189
File diff suppressed because it is too large
Load Diff
+7
-7
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: invoke
|
name: invoke
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: R
|
returnType: R
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -33,7 +33,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: p1
|
name: p1
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: P1
|
returnType: P1
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -52,7 +52,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: p2
|
name: p2
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: P2
|
returnType: P2
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -81,7 +81,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -99,7 +99,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -128,7 +128,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -155,7 +155,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+9
-9
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: serializeFirstTarget
|
name: serializeFirstTarget
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -33,7 +33,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/FirstTarget
|
returnType: test/FirstTarget
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -62,7 +62,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: serializeSecondTarget
|
name: serializeSecondTarget
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -80,7 +80,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/SecondTarget
|
returnType: test/SecondTarget
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -109,7 +109,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -156,7 +156,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -183,7 +183,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -202,7 +202,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE_MEMBER_GENERATED
|
origin: SOURCE_MEMBER_GENERATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/Serializer
|
returnType: test/Serializer
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+6
-6
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -42,7 +42,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -60,7 +60,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -89,7 +89,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -116,7 +116,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -135,7 +135,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/WithGeneratedCompanion.Companion
|
returnType: test/WithGeneratedCompanion.Companion
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+6
-6
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: materialize
|
name: materialize
|
||||||
origin: PLUGIN
|
origin: PLUGIN
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/MyClass
|
returnType: test/MyClass
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -42,7 +42,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: equals
|
name: equals
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -60,7 +60,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: other
|
name: other
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Any?
|
returnType: kotlin/Any?
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -89,7 +89,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: hashCode
|
name: hashCode
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -116,7 +116,7 @@ KtFunctionSymbol:
|
|||||||
modality: OPEN
|
modality: OPEN
|
||||||
name: toString
|
name: toString
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -158,7 +158,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE_MEMBER_GENERATED
|
origin: SOURCE_MEMBER_GENERATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: test/MyClass
|
returnType: test/MyClass
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+10
-4
@@ -15,10 +15,16 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: [
|
receiver: KtReceiverParameterSymbol:
|
||||||
ReceiverTypeAnnotation()
|
annotationsList: [
|
||||||
psi: KtAnnotationEntry
|
ReceiverAnnotation()
|
||||||
] @R|ReceiverTypeAnnotation|() kotlin/Int
|
psi: KtAnnotationEntry
|
||||||
|
]
|
||||||
|
origin: SOURCE
|
||||||
|
type: [
|
||||||
|
ReceiverTypeAnnotation()
|
||||||
|
psi: KtAnnotationEntry
|
||||||
|
] @R|ReceiverTypeAnnotation|() kotlin/Int
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+1
-1
@@ -15,7 +15,7 @@ KtPropertyGetterSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@ KtPropertyGetterSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+10
-4
@@ -15,10 +15,16 @@ KtPropertyGetterSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: [
|
receiver: KtReceiverParameterSymbol:
|
||||||
ReceiverTypeAnnotation()
|
annotationsList: [
|
||||||
psi: KtAnnotationEntry
|
ReceiverAnnotation()
|
||||||
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
psi: KtAnnotationEntry
|
||||||
|
]
|
||||||
|
origin: SOURCE
|
||||||
|
type: [
|
||||||
|
ReceiverTypeAnnotation()
|
||||||
|
psi: KtAnnotationEntry
|
||||||
|
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+10
-4
@@ -15,10 +15,16 @@ KtPropertyGetterSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: [
|
receiver: KtReceiverParameterSymbol:
|
||||||
ReceiverTypeAnnotation()
|
annotationsList: [
|
||||||
psi: KtAnnotationEntry
|
ReceiverAnnotation()
|
||||||
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
psi: KtAnnotationEntry
|
||||||
|
]
|
||||||
|
origin: SOURCE
|
||||||
|
type: [
|
||||||
|
ReceiverTypeAnnotation()
|
||||||
|
psi: KtAnnotationEntry
|
||||||
|
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+2
-2
@@ -19,7 +19,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -42,7 +42,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: lazyProperty
|
name: lazyProperty
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
Vendored
+2
-2
@@ -21,7 +21,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -44,7 +44,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: lazyProperty
|
name: lazyProperty
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
Vendored
+20
-8
@@ -14,10 +14,16 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: [
|
receiver: KtReceiverParameterSymbol:
|
||||||
ReceiverTypeAnnotation()
|
annotationsList: [
|
||||||
psi: KtAnnotationEntry
|
ReceiverAnnotation()
|
||||||
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
psi: KtAnnotationEntry
|
||||||
|
]
|
||||||
|
origin: SOURCE
|
||||||
|
type: [
|
||||||
|
ReceiverTypeAnnotation()
|
||||||
|
psi: KtAnnotationEntry
|
||||||
|
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -40,10 +46,16 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: prop
|
name: prop
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: [
|
receiver: KtReceiverParameterSymbol:
|
||||||
ReceiverTypeAnnotation()
|
annotationsList: [
|
||||||
psi: KtAnnotationEntry
|
ReceiverAnnotation()
|
||||||
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
psi: KtAnnotationEntry
|
||||||
|
]
|
||||||
|
origin: SOURCE
|
||||||
|
type: [
|
||||||
|
ReceiverTypeAnnotation()
|
||||||
|
psi: KtAnnotationEntry
|
||||||
|
] @R|ReceiverTypeAnnotation|() kotlin/Long
|
||||||
returnType: kotlin/Boolean
|
returnType: kotlin/Boolean
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ KtEnumEntrySymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
name: SYNCHRONIZED
|
name: SYNCHRONIZED
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/LazyThreadSafetyMode
|
returnType: kotlin/LazyThreadSafetyMode
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ KtEnumEntrySymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
name: SYNCHRONIZED
|
name: SYNCHRONIZED
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/LazyThreadSafetyMode
|
returnType: kotlin/LazyThreadSafetyMode
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+5
-5
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: listOf
|
name: listOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<T>
|
returnType: kotlin/collections/List<T>
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -35,7 +35,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: T
|
returnType: T
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -67,7 +67,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: listOf
|
name: listOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<T>
|
returnType: kotlin/collections/List<T>
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -95,7 +95,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: listOf
|
name: listOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<T>
|
returnType: kotlin/collections/List<T>
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -115,7 +115,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: true
|
isVararg: true
|
||||||
name: elements
|
name: elements
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: T
|
returnType: T
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+5
-5
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: listOf
|
name: listOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<T>
|
returnType: kotlin/collections/List<T>
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -35,7 +35,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: element
|
name: element
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: T
|
returnType: T
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -66,7 +66,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: listOf
|
name: listOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<T>
|
returnType: kotlin/collections/List<T>
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -94,7 +94,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: listOf
|
name: listOf
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/List<T>
|
returnType: kotlin/collections/List<T>
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -114,7 +114,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: true
|
isVararg: true
|
||||||
name: elements
|
name: elements
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: T
|
returnType: T
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+2
-2
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: get
|
name: get
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -33,7 +33,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: get
|
name: get
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: E
|
returnType: E
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -33,7 +33,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+3
-3
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -43,7 +43,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -61,7 +61,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+3
-3
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -42,7 +42,7 @@ KtFunctionSymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: listIterator
|
name: listIterator
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/collections/ListIterator<E>
|
returnType: kotlin/collections/ListIterator<E>
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -60,7 +60,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: index
|
name: index
|
||||||
origin: LIBRARY
|
origin: LIBRARY
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+8
-8
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Anno
|
returnType: Anno
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: param1
|
name: param1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: param1
|
name: param1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: param2
|
name: param2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -148,7 +148,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: param2
|
name: param2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -202,7 +202,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Anno
|
returnType: Anno
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: param1
|
name: param1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: param1
|
name: param1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: param2
|
name: param2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -148,7 +148,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: param2
|
name: param2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -202,7 +202,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+5
-5
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: run
|
name: run
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -41,7 +41,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -65,7 +65,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: data
|
name: data
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -109,7 +109,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: java/lang/Runnable
|
returnType: java/lang/Runnable
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -133,7 +133,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: anonymousObject
|
name: anonymousObject
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: java/lang/Runnable
|
returnType: java/lang/Runnable
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: run
|
name: run
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -41,7 +41,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -65,7 +65,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: data
|
name: data
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -109,7 +109,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: java/lang/Runnable
|
returnType: java/lang/Runnable
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -133,7 +133,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: anonymousObject
|
name: anonymousObject
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: java/lang/Runnable
|
returnType: java/lang/Runnable
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -37,7 +37,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: p
|
name: p
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -64,13 +64,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -88,7 +88,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i
|
name: i
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -69,7 +69,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+5
-5
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -96,7 +96,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: b
|
name: b
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+5
-5
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -96,7 +96,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: b
|
name: b
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+6
-6
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -25,7 +25,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: false
|
isPrimary: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -43,7 +43,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -63,7 +63,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: false
|
isPrimary: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -81,7 +81,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -100,7 +100,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: z
|
name: z
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+2
-2
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: false
|
isPrimary: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -25,7 +25,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: int
|
name: int
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+1
-1
@@ -18,7 +18,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Vendored
+2
-2
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -40,7 +40,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
+18
-18
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -148,7 +148,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -174,7 +174,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -198,7 +198,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: z
|
name: z
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -219,7 +219,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: z
|
name: z
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -260,7 +260,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -284,7 +284,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -308,7 +308,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: delegate
|
name: delegate
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -329,7 +329,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -353,7 +353,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Lazy<MyColor>
|
returnType: kotlin/Lazy<MyColor>
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -377,7 +377,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: lambda
|
name: lambda
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Lazy<MyColor>
|
returnType: kotlin/Lazy<MyColor>
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -407,7 +407,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -431,7 +431,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: nonLazy
|
name: nonLazy
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -148,7 +148,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -174,7 +174,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -198,7 +198,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: z
|
name: z
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -219,7 +219,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: z
|
name: z
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -260,7 +260,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -284,7 +284,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -307,7 +307,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: delegate
|
name: delegate
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -328,7 +328,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -352,7 +352,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Lazy<MyColor>
|
returnType: kotlin/Lazy<MyColor>
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -376,7 +376,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: lambda
|
name: lambda
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Lazy<MyColor>
|
returnType: kotlin/Lazy<MyColor>
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -406,7 +406,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -430,7 +430,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: nonLazy
|
name: nonLazy
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: MyColor
|
returnType: MyColor
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
+24
-24
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -40,7 +40,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i
|
name: i
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -72,7 +72,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -95,7 +95,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i2
|
name: i2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -124,7 +124,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -147,7 +147,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i3
|
name: i3
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -177,13 +177,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -201,7 +201,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -241,7 +241,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -264,7 +264,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i4
|
name: i4
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -294,13 +294,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -318,7 +318,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -359,7 +359,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: f
|
name: f
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -413,7 +413,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -437,7 +437,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i2
|
name: i2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -471,7 +471,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: f2
|
name: f2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -523,7 +523,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -546,7 +546,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: j
|
name: j
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -578,7 +578,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -601,7 +601,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: j2
|
name: j2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -630,7 +630,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -653,7 +653,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: j2
|
name: j2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -40,7 +40,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i
|
name: i
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -72,7 +72,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -95,7 +95,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i2
|
name: i2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -124,7 +124,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -147,7 +147,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i3
|
name: i3
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -177,13 +177,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -201,7 +201,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -240,7 +240,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -263,7 +263,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i4
|
name: i4
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: [
|
annotationsList: [
|
||||||
@@ -293,13 +293,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -317,7 +317,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -357,7 +357,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: f
|
name: f
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -411,7 +411,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -435,7 +435,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: i2
|
name: i2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -469,7 +469,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: f2
|
name: f2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -521,7 +521,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -544,7 +544,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: j
|
name: j
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -576,7 +576,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -599,7 +599,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: j2
|
name: j2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
@@ -631,7 +631,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -654,7 +654,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: j2
|
name: j2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
|
|||||||
Vendored
+10
-10
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: P
|
returnType: P
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -148,7 +148,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -190,7 +190,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: l
|
name: l
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -205,7 +205,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: r
|
name: r
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -229,7 +229,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: destruct
|
name: destruct
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+10
-10
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: P
|
returnType: P
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -148,7 +148,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: y
|
name: y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -190,7 +190,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: l
|
name: l
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -205,7 +205,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: r
|
name: r
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -229,7 +229,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: destruct
|
name: destruct
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: dynamic
|
returnType: dynamic
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -38,7 +38,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: p
|
name: p
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: dynamic
|
returnType: dynamic
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -59,7 +59,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: dynamic
|
returnType: dynamic
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -84,7 +84,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: f
|
name: f
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: dynamic
|
returnType: dynamic
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -102,7 +102,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: p
|
name: p
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: dynamic
|
returnType: dynamic
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ KtEnumEntrySymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
name: Y
|
name: Y
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: X
|
returnType: X
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -21,7 +21,7 @@ KtEnumEntrySymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
name: Z
|
name: Z
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: X
|
returnType: X
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+9
-9
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Style
|
returnType: Style
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -104,7 +104,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: true
|
isOverride: true
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -128,7 +128,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: exitAnimation
|
name: exitAnimation
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -150,7 +150,7 @@ KtEnumEntrySymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
name: SHEET
|
name: SHEET
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Style
|
returnType: Style
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -173,7 +173,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -197,7 +197,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: exitAnimation
|
name: exitAnimation
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: true
|
isPrimary: true
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Style
|
returnType: Style
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -32,7 +32,7 @@ KtConstructorSymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtConstructorSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -77,7 +77,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -104,7 +104,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: true
|
isOverride: true
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -127,7 +127,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: exitAnimation
|
name: exitAnimation
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
@@ -149,7 +149,7 @@ KtEnumEntrySymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
name: SHEET
|
name: SHEET
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: Style
|
returnType: Style
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -172,7 +172,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -196,7 +196,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: ABSTRACT
|
modality: ABSTRACT
|
||||||
name: exitAnimation
|
name: exitAnimation
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/String
|
returnType: kotlin/String
|
||||||
setter: null
|
setter: null
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
|
|||||||
+5
-5
@@ -14,7 +14,7 @@ KtKotlinPropertySymbol:
|
|||||||
isOverride: false
|
isOverride: false
|
||||||
modality: FINAL
|
modality: FINAL
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -37,7 +37,7 @@ KtKotlinPropertySymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: p
|
name: p
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
setter: KtPropertySetterSymbol:
|
setter: KtPropertySetterSymbol:
|
||||||
annotationsList: []
|
annotationsList: []
|
||||||
@@ -64,13 +64,13 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
getContainingModule: KtSourceModule "Sources of main"
|
getContainingModule: KtSourceModule "Sources of main"
|
||||||
deprecationStatus: null
|
deprecationStatus: null
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: ACCESSOR
|
symbolKind: ACCESSOR
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -88,7 +88,7 @@ KtKotlinPropertySymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: value
|
name: value
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -15,7 +15,10 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: kotlin/String
|
receiver: KtReceiverParameterSymbol:
|
||||||
|
annotationsList: []
|
||||||
|
origin: SOURCE
|
||||||
|
type: kotlin/String
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: loopVariable
|
name: loopVariable
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -30,7 +30,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: usage
|
name: usage
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -33,7 +33,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+2
-2
@@ -26,7 +26,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: [
|
typeParameters: [
|
||||||
@@ -46,7 +46,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: x
|
name: x
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: X
|
returnType: X
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+2
-2
@@ -7,7 +7,7 @@ KtConstructorSymbol:
|
|||||||
isExtension: false
|
isExtension: false
|
||||||
isPrimary: false
|
isPrimary: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: A
|
returnType: A
|
||||||
symbolKind: CLASS_MEMBER
|
symbolKind: CLASS_MEMBER
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -25,7 +25,7 @@ KtConstructorSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: i
|
name: i
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
+14
-14
@@ -6,7 +6,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: b
|
name: b
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -20,7 +20,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -38,7 +38,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -56,7 +56,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: lam1
|
name: lam1
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
|
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -71,7 +71,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: c
|
name: c
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -85,7 +85,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -103,7 +103,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: a
|
name: a
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -121,7 +121,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: lam2
|
name: lam2
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
|
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -136,7 +136,7 @@ KtLocalVariableSymbol:
|
|||||||
isVal: true
|
isVal: true
|
||||||
name: b
|
name: b
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -150,7 +150,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
hasStableParameterNames: true
|
hasStableParameterNames: true
|
||||||
isExtension: false
|
isExtension: false
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -168,7 +168,7 @@ KtAnonymousFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: it
|
name: it
|
||||||
origin: SOURCE_MEMBER_GENERATED
|
origin: SOURCE_MEMBER_GENERATED
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Int
|
returnType: kotlin/Int
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -195,7 +195,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: foo
|
name: foo
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -221,7 +221,7 @@ KtFunctionSymbol:
|
|||||||
modality: FINAL
|
modality: FINAL
|
||||||
name: bar
|
name: bar
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Unit
|
returnType: kotlin/Unit
|
||||||
symbolKind: TOP_LEVEL
|
symbolKind: TOP_LEVEL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
@@ -239,7 +239,7 @@ KtFunctionSymbol:
|
|||||||
isVararg: false
|
isVararg: false
|
||||||
name: lmbd
|
name: lmbd
|
||||||
origin: SOURCE
|
origin: SOURCE
|
||||||
receiverType: null
|
receiver: null
|
||||||
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
|
returnType: kotlin/Function1<kotlin/Int, kotlin/Int>
|
||||||
symbolKind: LOCAL
|
symbolKind: LOCAL
|
||||||
typeParameters: []
|
typeParameters: []
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user