[IR] Autogenerate IrFieldImpl

^KT-65773 In Progress
This commit is contained in:
Wojciech Litewka
2024-02-16 12:42:49 +01:00
committed by Space Team
parent f2af1bc04a
commit 541a0f4bec
2 changed files with 21 additions and 15 deletions
@@ -1,12 +1,17 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Copyright 2010-2024 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.
*/
// This file was generated automatically. See compiler/ir/ir.tree/tree-generator/ReadMe.md.
// DO NOT MODIFY IT MANUALLY.
@file:Suppress("DuplicatedCode", "unused")
package org.jetbrains.kotlin.ir.declarations.impl
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
import org.jetbrains.kotlin.descriptors.DescriptorVisibility
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
import org.jetbrains.kotlin.ir.IrImplementationDetail
import org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI
import org.jetbrains.kotlin.ir.declarations.*
@@ -21,21 +26,20 @@ class IrFieldImpl @IrImplementationDetail constructor(
override val startOffset: Int,
override val endOffset: Int,
override var origin: IrDeclarationOrigin,
override val symbol: IrFieldSymbol,
override var name: Name,
override var type: IrType,
override var visibility: DescriptorVisibility,
override var isFinal: Boolean,
override var isExternal: Boolean,
override var isStatic: Boolean,
override val factory: IrFactory,
override var name: Name,
override var isExternal: Boolean,
override var visibility: DescriptorVisibility,
override val symbol: IrFieldSymbol,
override var type: IrType,
override var isFinal: Boolean,
override var isStatic: Boolean,
) : IrField() {
init {
symbol.bind(this)
}
override var annotations: List<IrConstructorCall> = emptyList()
override lateinit var parent: IrDeclarationParent
override var annotations: List<IrConstructorCall> = emptyList()
override var metadata: MetadataSource? = null
@ObsoleteDescriptorBasedAPI
override val descriptor: PropertyDescriptor
@@ -45,5 +49,7 @@ class IrFieldImpl @IrImplementationDetail constructor(
override var correspondingPropertySymbol: IrPropertySymbol? = null
override var metadata: MetadataSource? = null
init {
symbol.bind(this)
}
}
@@ -49,7 +49,7 @@ object ImplementationConfigurator : AbstractIrTreeImplementationConfigurator() {
}
impl(field) {
implementation.doPrint = false
defaultNull("initializer", "correspondingPropertySymbol")
}
impl(property) {