Add stdlib API test + remove some extra IR stdlib API's
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
--- 15,15 ---
|
||||
- public final enum class AnnotationRetention : kotlin.Enum<kotlin.annotation.AnnotationRetention> {
|
||||
- enum entry SOURCE
|
||||
-
|
||||
- enum entry BINARY
|
||||
-
|
||||
- enum entry RUNTIME
|
||||
-
|
||||
- // Static members
|
||||
- public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): kotlin.annotation.AnnotationRetention
|
||||
- public final /*synthesized*/ fun values(): kotlin.Array<kotlin.annotation.AnnotationRetention>
|
||||
- }
|
||||
-
|
||||
--- 63,51 ---
|
||||
- public final enum class AnnotationTarget : kotlin.Enum<kotlin.annotation.AnnotationTarget> {
|
||||
- enum entry CLASS
|
||||
-
|
||||
- enum entry ANNOTATION_CLASS
|
||||
-
|
||||
- enum entry TYPE_PARAMETER
|
||||
-
|
||||
- enum entry PROPERTY
|
||||
-
|
||||
- enum entry FIELD
|
||||
-
|
||||
- enum entry LOCAL_VARIABLE
|
||||
-
|
||||
- enum entry VALUE_PARAMETER
|
||||
-
|
||||
- enum entry CONSTRUCTOR
|
||||
-
|
||||
- enum entry FUNCTION
|
||||
-
|
||||
- enum entry PROPERTY_GETTER
|
||||
-
|
||||
- enum entry PROPERTY_SETTER
|
||||
-
|
||||
- enum entry TYPE
|
||||
-
|
||||
- enum entry EXPRESSION
|
||||
-
|
||||
- enum entry FILE
|
||||
-
|
||||
- @kotlin.SinceKotlin(version = "1.1") enum entry TYPEALIAS
|
||||
-
|
||||
- // Static members
|
||||
- public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): kotlin.annotation.AnnotationTarget
|
||||
- public final /*synthesized*/ fun values(): kotlin.Array<kotlin.annotation.AnnotationTarget>
|
||||
- }
|
||||
-
|
||||
--- 103,55 ---
|
||||
- @kotlin.annotation.Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS}) public final annotation class MustBeDocumented : kotlin.Annotation {
|
||||
- /*primary*/ public constructor MustBeDocumented()
|
||||
- }
|
||||
-
|
||||
--- 111,59 ---
|
||||
- @kotlin.annotation.Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS}) public final annotation class Repeatable : kotlin.Annotation {
|
||||
- /*primary*/ public constructor Repeatable()
|
||||
- }
|
||||
-
|
||||
--- 121,65 ---
|
||||
- @kotlin.annotation.Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS}) public final annotation class Retention : kotlin.Annotation {
|
||||
- /*primary*/ public constructor Retention(/*0*/ value: kotlin.annotation.AnnotationRetention = ...)
|
||||
- public final val value: kotlin.annotation.AnnotationRetention
|
||||
- public final fun <get-value>(): kotlin.annotation.AnnotationRetention
|
||||
- }
|
||||
-
|
||||
--- 132,70 ---
|
||||
-
|
||||
- @kotlin.annotation.Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS}) @kotlin.annotation.MustBeDocumented public final annotation class Target : kotlin.Annotation {
|
||||
- /*primary*/ public constructor Target(/*0*/ vararg allowedTargets: kotlin.annotation.AnnotationTarget /*kotlin.Array<out kotlin.annotation.AnnotationTarget>*/)
|
||||
- public final val allowedTargets: kotlin.Array<out kotlin.annotation.AnnotationTarget>
|
||||
- public final fun <get-allowedTargets>(): kotlin.Array<out kotlin.annotation.AnnotationTarget>
|
||||
- }
|
||||
Reference in New Issue
Block a user