diff --git a/core/builtins/src/kotlin/Inline.kt b/core/builtins/src/kotlin/Inline.kt index a9a2cc069af..8f6c5210165 100644 --- a/core/builtins/src/kotlin/Inline.kt +++ b/core/builtins/src/kotlin/Inline.kt @@ -40,12 +40,7 @@ public annotation class noinline public annotation class inline /** - * Specifies options for allowed control flow in inlined lambdas. Lambdas which are invoked directly by the - * receiving function are allowed to use non-local control flow statements. Lambdas which are called from - * a different execution context (for example, from an object contained in the receiving function) - * are restricted to local control flow statements. - * - * @property value the inlining options selected for the annotated function parameter. + * @suppress */ @Target(AnnotationTarget.VALUE_PARAMETER) @Retention(AnnotationRetention.RUNTIME) @@ -64,6 +59,7 @@ public annotation class crossinline * Specifies the control flow statements which are allowed to be used for non-local control flow transfer in a lambda * passed as a parameter to an inline function. */ +@Deprecated("Use the crossinline modifier instead") public enum class InlineOption { /** * This option hasn't been implemented yet. diff --git a/libraries/stdlib/src/Module.md b/libraries/stdlib/src/Module.md index a4934191cf9..50ab97afe27 100644 --- a/libraries/stdlib/src/Module.md +++ b/libraries/stdlib/src/Module.md @@ -9,6 +9,10 @@ text and files. Core functions and types, available on all supported platforms. +# Package kotlin.annotation + +Library support for the Kotlin annotation facility. + # Package kotlin.browser API to access the web browser DOM.