org.jetbrains.kotlin.ir.expressions.IrCall.kt Maven / Gradle / Ivy
/*
* Copyright 2010-2023 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.expressions
import org.jetbrains.kotlin.ir.symbols.IrClassSymbol
import org.jetbrains.kotlin.ir.symbols.IrSimpleFunctionSymbol
import org.jetbrains.kotlin.ir.visitors.IrElementVisitor
/**
* A leaf IR tree element.
*
* Generated from: [org.jetbrains.kotlin.ir.generator.IrTree.call]
*/
abstract class IrCall : IrFunctionAccessExpression() {
abstract override var symbol: IrSimpleFunctionSymbol
abstract var superQualifierSymbol: IrClassSymbol?
override fun accept(visitor: IrElementVisitor, data: D): R =
visitor.visitCall(this, data)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy