All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2010-2020 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.
 */

package org.jetbrains.kotlin.ir

/**
 * This annotation is used on IR API elements which use front-end (FE) descriptors to obtain information, directly or indirectly.
 *
 * Descriptors are used in FE to represent main declaration properties and to refer declarations.
 * Early IR versions were descriptor-based, so IR elements used descriptors to obtain some information about element properties.
 * However, more correct and universal way is to store all necessary information inside IR elements themselves
 * and do not use descriptors as some intermediate storage. It's planned to remove all descriptor usages from IR in future.
 */
@RequiresOptIn(message = "Please use IR declaration properties and not its descriptor properties", level = RequiresOptIn.Level.ERROR)
annotation class ObsoleteDescriptorBasedAPI




© 2015 - 2024 Weber Informatics LLC | Privacy Policy