Move jet.runtime.Intrinsic to kotlin.jvm.internal.Intrinsic
This commit is contained in:
@@ -3,7 +3,7 @@ package kotlin
|
||||
import java.io.ByteArrayInputStream
|
||||
import java.nio.charset.Charset
|
||||
import java.util.Arrays
|
||||
import jet.runtime.Intrinsic
|
||||
import kotlin.jvm.internal.Intrinsic
|
||||
|
||||
// Array "constructor"
|
||||
[Intrinsic("kotlin.arrays.array")] public fun <reified T> array(vararg t : T) : Array<T> = t
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
package kotlin
|
||||
|
||||
import java.lang.Class
|
||||
import java.lang.Object
|
||||
import java.lang.annotation.*
|
||||
|
||||
import jet.runtime.Intrinsic
|
||||
import kotlin.jvm.internal.Intrinsic
|
||||
|
||||
/**
|
||||
* This annotation indicates what exceptions should be declared by a function when compiled to a JVM method
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
package kotlin.jvm.internal
|
||||
|
||||
import java.lang.annotation.*
|
||||
|
||||
Retention(RetentionPolicy.RUNTIME)
|
||||
annotation class Intrinsic(val value: String)
|
||||
Reference in New Issue
Block a user