org.jetbrains.kotlin.fir.declarations.builder.FirBackingFieldBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* 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/fir/tree/tree-generator/Readme.md.
// DO NOT MODIFY IT MANUALLY.
@file:Suppress("DuplicatedCode", "unused")
package org.jetbrains.kotlin.fir.declarations.builder
import kotlin.contracts.*
import org.jetbrains.kotlin.KtSourceElement
import org.jetbrains.kotlin.fir.FirImplementationDetail
import org.jetbrains.kotlin.fir.FirModuleData
import org.jetbrains.kotlin.fir.builder.FirAnnotationContainerBuilder
import org.jetbrains.kotlin.fir.builder.FirBuilderDsl
import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty
import org.jetbrains.kotlin.fir.declarations.*
import org.jetbrains.kotlin.fir.declarations.impl.FirBackingFieldImpl
import org.jetbrains.kotlin.fir.expressions.FirAnnotation
import org.jetbrains.kotlin.fir.expressions.FirExpression
import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol
import org.jetbrains.kotlin.fir.symbols.impl.FirPropertySymbol
import org.jetbrains.kotlin.fir.types.ConeSimpleKotlinType
import org.jetbrains.kotlin.fir.types.FirTypeRef
import org.jetbrains.kotlin.name.Name
import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource
@FirBuilderDsl
class FirBackingFieldBuilder : FirVariableBuilder, FirAnnotationContainerBuilder {
override var source: KtSourceElement? = null
override var resolvePhase: FirResolvePhase = FirResolvePhase.RAW_FIR
override lateinit var moduleData: FirModuleData
override lateinit var origin: FirDeclarationOrigin
override var attributes: FirDeclarationAttributes = FirDeclarationAttributes()
override lateinit var returnTypeRef: FirTypeRef
override var receiverParameter: FirReceiverParameter? = null
override var deprecationsProvider: DeprecationsProvider = UnresolvedDeprecationProvider
override var containerSource: DeserializedContainerSource? = null
override var dispatchReceiverType: ConeSimpleKotlinType? = null
override val contextReceivers: MutableList = mutableListOf()
override lateinit var name: Name
override var delegate: FirExpression? = null
override var isVar: Boolean by kotlin.properties.Delegates.notNull()
var isVal: Boolean by kotlin.properties.Delegates.notNull()
override var getter: FirPropertyAccessor? = null
override var setter: FirPropertyAccessor? = null
override var backingField: FirBackingField? = null
lateinit var symbol: FirBackingFieldSymbol
lateinit var propertySymbol: FirPropertySymbol
override var initializer: FirExpression? = null
override val annotations: MutableList = mutableListOf()
val typeParameters: MutableList = mutableListOf()
override lateinit var status: FirDeclarationStatus
@OptIn(FirImplementationDetail::class)
override fun build(): FirBackingField {
return FirBackingFieldImpl(
source,
resolvePhase,
moduleData,
origin,
attributes,
returnTypeRef,
receiverParameter,
deprecationsProvider,
containerSource,
dispatchReceiverType,
contextReceivers.toMutableOrEmpty(),
name,
delegate,
isVar,
isVal,
getter,
setter,
backingField,
symbol,
propertySymbol,
initializer,
annotations.toMutableOrEmpty(),
typeParameters,
status,
)
}
}
@OptIn(ExperimentalContracts::class)
inline fun buildBackingField(init: FirBackingFieldBuilder.() -> Unit): FirBackingField {
contract {
callsInPlace(init, InvocationKind.EXACTLY_ONCE)
}
return FirBackingFieldBuilder().apply(init).build()
}