Move jet.runtime.Intrinsic to kotlin.jvm.internal.Intrinsic

This commit is contained in:
Alexander Udalov
2014-02-10 20:04:57 +04:00
parent b68e47f705
commit 6acce0f930
5 changed files with 10 additions and 35 deletions
+1 -1
View File
@@ -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 -4
View File
@@ -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)