Made ObjCMethodImp internal and @PublishedApi.

This commit is contained in:
Alexander Gorshenev
2019-01-24 01:27:27 +03:00
committed by alexander-gorshenev
parent 8067ab7034
commit ce0451e5c8
@@ -120,9 +120,10 @@ annotation class ObjCFactory(val bridge: String)
@Retention(AnnotationRetention.BINARY)
annotation class InteropStubs()
@PublishedApi
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.SOURCE)
private annotation class ObjCMethodImp(val selector: String, val encoding: String)
internal annotation class ObjCMethodImp(val selector: String, val encoding: String)
@kotlin.native.internal.ExportForCppRuntime("Kotlin_Interop_getObjCClass")
private fun getObjCClassByName(name: NativePtr): NativePtr {