f48436b35e
[JS IR] Leave JsEagerInitialization until bootstrap update [JS IR] Fix js stdlib api [JS IR] Change annotation on eager initialization in sources [JS IR] Make eager initialization consistent with native Merge-request: KT-MR-5030
14 lines
565 B
Kotlin
14 lines
565 B
Kotlin
/*
|
|
* Copyright 2010-2021 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.js
|
|
|
|
@ExperimentalStdlibApi
|
|
@Retention(AnnotationRetention.BINARY)
|
|
@Target(AnnotationTarget.PROPERTY)
|
|
@SinceKotlin("1.6")
|
|
@Deprecated("This annotation is a temporal migration assistance and may be removed in the future releases, please consider filing an issue about the case where it is needed")
|
|
public annotation class EagerInitialization
|