Minor. Code formatted
This commit is contained in:
+13
-13
@@ -15,17 +15,17 @@ import org.jetbrains.kotlin.descriptors.commonizer.cir.CirTypeParameter
|
|||||||
import org.jetbrains.kotlin.name.Name
|
import org.jetbrains.kotlin.name.Name
|
||||||
|
|
||||||
data class CirClassImpl(
|
data class CirClassImpl(
|
||||||
override val annotations: List<CirAnnotation>,
|
override val annotations: List<CirAnnotation>,
|
||||||
override val name: Name,
|
override val name: Name,
|
||||||
override val typeParameters: List<CirTypeParameter>,
|
override val typeParameters: List<CirTypeParameter>,
|
||||||
override val visibility: DescriptorVisibility,
|
override val visibility: DescriptorVisibility,
|
||||||
override val modality: Modality,
|
override val modality: Modality,
|
||||||
override val kind: ClassKind,
|
override val kind: ClassKind,
|
||||||
override var companion: Name?,
|
override var companion: Name?,
|
||||||
override val isCompanion: Boolean,
|
override val isCompanion: Boolean,
|
||||||
override val isData: Boolean,
|
override val isData: Boolean,
|
||||||
override val isInline: Boolean,
|
override val isInline: Boolean,
|
||||||
override val isInner: Boolean,
|
override val isInner: Boolean,
|
||||||
override val isExternal: Boolean,
|
override val isExternal: Boolean,
|
||||||
override val supertypes: MutableCollection<CirType>
|
override val supertypes: MutableCollection<CirType>
|
||||||
) : CirClass
|
) : CirClass
|
||||||
|
|||||||
+12
-12
@@ -12,16 +12,16 @@ import org.jetbrains.kotlin.descriptors.commonizer.cir.*
|
|||||||
import org.jetbrains.kotlin.name.Name
|
import org.jetbrains.kotlin.name.Name
|
||||||
|
|
||||||
data class CirFunctionImpl(
|
data class CirFunctionImpl(
|
||||||
override val annotations: List<CirAnnotation>,
|
override val annotations: List<CirAnnotation>,
|
||||||
override val name: Name,
|
override val name: Name,
|
||||||
override val typeParameters: List<CirTypeParameter>,
|
override val typeParameters: List<CirTypeParameter>,
|
||||||
override val visibility: DescriptorVisibility,
|
override val visibility: DescriptorVisibility,
|
||||||
override val modality: Modality,
|
override val modality: Modality,
|
||||||
override val containingClassDetails: CirContainingClassDetails?,
|
override val containingClassDetails: CirContainingClassDetails?,
|
||||||
override var valueParameters: List<CirValueParameter>,
|
override var valueParameters: List<CirValueParameter>,
|
||||||
override var hasStableParameterNames: Boolean,
|
override var hasStableParameterNames: Boolean,
|
||||||
override val extensionReceiver: CirExtensionReceiver?,
|
override val extensionReceiver: CirExtensionReceiver?,
|
||||||
override val returnType: CirType,
|
override val returnType: CirType,
|
||||||
override val kind: CallableMemberDescriptor.Kind,
|
override val kind: CallableMemberDescriptor.Kind,
|
||||||
override val modifiers: CirFunctionModifiers
|
override val modifiers: CirFunctionModifiers
|
||||||
) : CirFunction
|
) : CirFunction
|
||||||
|
|||||||
+19
-19
@@ -13,25 +13,25 @@ import org.jetbrains.kotlin.name.Name
|
|||||||
import org.jetbrains.kotlin.resolve.constants.ConstantValue
|
import org.jetbrains.kotlin.resolve.constants.ConstantValue
|
||||||
|
|
||||||
data class CirPropertyImpl(
|
data class CirPropertyImpl(
|
||||||
override val annotations: List<CirAnnotation>,
|
override val annotations: List<CirAnnotation>,
|
||||||
override val name: Name,
|
override val name: Name,
|
||||||
override val typeParameters: List<CirTypeParameter>,
|
override val typeParameters: List<CirTypeParameter>,
|
||||||
override val visibility: DescriptorVisibility,
|
override val visibility: DescriptorVisibility,
|
||||||
override val modality: Modality,
|
override val modality: Modality,
|
||||||
override val containingClassDetails: CirContainingClassDetails?,
|
override val containingClassDetails: CirContainingClassDetails?,
|
||||||
override val isExternal: Boolean,
|
override val isExternal: Boolean,
|
||||||
override val extensionReceiver: CirExtensionReceiver?,
|
override val extensionReceiver: CirExtensionReceiver?,
|
||||||
override val returnType: CirType,
|
override val returnType: CirType,
|
||||||
override val kind: CallableMemberDescriptor.Kind,
|
override val kind: CallableMemberDescriptor.Kind,
|
||||||
override val isVar: Boolean,
|
override val isVar: Boolean,
|
||||||
override val isLateInit: Boolean,
|
override val isLateInit: Boolean,
|
||||||
override var isConst: Boolean,
|
override var isConst: Boolean,
|
||||||
override val isDelegate: Boolean,
|
override val isDelegate: Boolean,
|
||||||
override val getter: CirPropertyGetter?,
|
override val getter: CirPropertyGetter?,
|
||||||
override val setter: CirPropertySetter?,
|
override val setter: CirPropertySetter?,
|
||||||
override val backingFieldAnnotations: List<CirAnnotation>?,
|
override val backingFieldAnnotations: List<CirAnnotation>?,
|
||||||
override val delegateFieldAnnotations: List<CirAnnotation>?,
|
override val delegateFieldAnnotations: List<CirAnnotation>?,
|
||||||
override val compileTimeInitializer: ConstantValue<*>?
|
override val compileTimeInitializer: ConstantValue<*>?
|
||||||
) : CirProperty {
|
) : CirProperty {
|
||||||
// const property in "common" fragment is already lifted up
|
// const property in "common" fragment is already lifted up
|
||||||
override val isLiftedUp get() = isConst
|
override val isLiftedUp get() = isConst
|
||||||
|
|||||||
+6
-6
@@ -10,10 +10,10 @@ import org.jetbrains.kotlin.descriptors.commonizer.cir.CirAnnotation
|
|||||||
import org.jetbrains.kotlin.descriptors.commonizer.cir.CirPropertySetter
|
import org.jetbrains.kotlin.descriptors.commonizer.cir.CirPropertySetter
|
||||||
|
|
||||||
data class CirPropertySetterImpl(
|
data class CirPropertySetterImpl(
|
||||||
override val annotations: List<CirAnnotation>,
|
override val annotations: List<CirAnnotation>,
|
||||||
override val parameterAnnotations: List<CirAnnotation>,
|
override val parameterAnnotations: List<CirAnnotation>,
|
||||||
override val visibility: DescriptorVisibility,
|
override val visibility: DescriptorVisibility,
|
||||||
override val isDefault: Boolean,
|
override val isDefault: Boolean,
|
||||||
override val isExternal: Boolean,
|
override val isExternal: Boolean,
|
||||||
override val isInline: Boolean
|
override val isInline: Boolean
|
||||||
) : CirPropertySetter
|
) : CirPropertySetter
|
||||||
|
|||||||
Reference in New Issue
Block a user