Add missing SinceKotlin for new JS annotations, KT-6168

This commit is contained in:
Ilya Gorbunov
2023-08-20 23:55:54 +02:00
committed by Space Team
parent fa77e3952d
commit 93b0a90172
3 changed files with 5 additions and 0 deletions
@@ -27,6 +27,7 @@ public expect annotation class JsName(val name: String)
@RequiresOptIn(level = RequiresOptIn.Level.WARNING)
@MustBeDocumented
@Retention(AnnotationRetention.BINARY)
@SinceKotlin("1.9")
public annotation class ExperimentalJsFileName
/**
@@ -38,6 +39,7 @@ public annotation class ExperimentalJsFileName
@OptionalExpectation
@ExperimentalJsFileName
@Retention(AnnotationRetention.SOURCE)
@SinceKotlin("1.9")
public expect annotation class JsFileName(val name: String)
/**