kotlin.metadata.internal.common.builtInsExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-metadata-jvm Show documentation
Show all versions of kotlin-metadata-jvm Show documentation
Kotlin JVM metadata manipulation library
The newest version!
/*
* 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.
*/
package kotlin.metadata.internal.common
import kotlin.metadata.*
/**
* This object serves as an internal accessor for extensions that are available only when metadata is loaded from .kotlin_builtins file.
*/
public object BuiltInExtensionsAccessor {
public val KmClass.annotations: MutableList
get() = builtins.annotations
public var KmPackage.fqName: String?
get() = builtins.fqName
set(value) {
builtins.fqName = value
}
public val KmFunction.annotations: MutableList
get() = builtins.annotations
public val KmProperty.annotations: MutableList
get() = builtins.annotations
public val KmProperty.setterAnnotations: MutableList
get() = builtins.setterAnnotations
public val KmProperty.getterAnnotations: MutableList
get() = builtins.getterAnnotations
public var KmProperty.compileTimeValue: KmAnnotationArgument?
get() = builtins.compileTimeValue
set(value) {
builtins.compileTimeValue = value
}
public val KmConstructor.annotations: MutableList
get() = builtins.annotations
public val KmValueParameter.annotations: MutableList
get() = builtins.annotations
public val KmTypeParameter.annotations: MutableList
get() = builtins.annotations
public val KmType.annotations: MutableList
get() = builtins.annotations
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy