org.jetbrains.kotlin.ir.declarations.IrVariable.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/ir/ir.tree/tree-generator/ReadMe.md.
// DO NOT MODIFY IT MANUALLY.
package org.jetbrains.kotlin.ir.declarations
import org.jetbrains.kotlin.descriptors.VariableDescriptor
import org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI
import org.jetbrains.kotlin.ir.expressions.IrExpression
import org.jetbrains.kotlin.ir.symbols.IrVariableSymbol
import org.jetbrains.kotlin.ir.visitors.IrElementTransformer
import org.jetbrains.kotlin.ir.visitors.IrElementVisitor
/**
* Generated from: [org.jetbrains.kotlin.ir.generator.IrTree.variable]
*/
abstract class IrVariable : IrDeclarationBase(), IrValueDeclaration {
@ObsoleteDescriptorBasedAPI
abstract override val descriptor: VariableDescriptor
abstract override val symbol: IrVariableSymbol
abstract var isVar: Boolean
abstract var isConst: Boolean
abstract var isLateinit: Boolean
abstract var initializer: IrExpression?
override fun accept(visitor: IrElementVisitor, data: D): R =
visitor.visitVariable(this, data)
override fun acceptChildren(visitor: IrElementVisitor, data: D) {
initializer?.accept(visitor, data)
}
override fun transformChildren(transformer: IrElementTransformer, data: D) {
initializer = initializer?.transform(transformer, data)
}
}