@suppress for APIs in kotlin.reflect.jvm.internal
This commit is contained in:
@@ -18,4 +18,7 @@ package kotlin.reflect.jvm.internal
|
|||||||
|
|
||||||
import kotlin.jvm.internal.ExtensionFunctionImpl
|
import kotlin.jvm.internal.ExtensionFunctionImpl
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @suppress
|
||||||
|
*/
|
||||||
public abstract class KExtensionFunctionImpl<in T, out R> : ExtensionFunctionImpl<T, R>()
|
public abstract class KExtensionFunctionImpl<in T, out R> : ExtensionFunctionImpl<T, R>()
|
||||||
|
|||||||
@@ -18,4 +18,7 @@ package kotlin.reflect.jvm.internal
|
|||||||
|
|
||||||
import kotlin.jvm.internal.FunctionImpl
|
import kotlin.jvm.internal.FunctionImpl
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @suppress
|
||||||
|
*/
|
||||||
public abstract class KFunctionImpl<out R> : FunctionImpl<R>()
|
public abstract class KFunctionImpl<out R> : FunctionImpl<R>()
|
||||||
|
|||||||
@@ -18,6 +18,9 @@ package kotlin.reflect.jvm.internal
|
|||||||
|
|
||||||
import java.io.Serializable
|
import java.io.Serializable
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @suppress
|
||||||
|
*/
|
||||||
public abstract class KMemberFunctionImpl<in T, out R> : Serializable {
|
public abstract class KMemberFunctionImpl<in T, out R> : Serializable {
|
||||||
override fun toString() = "${javaClass.getGenericInterfaces().first()}"
|
override fun toString() = "${javaClass.getGenericInterfaces().first()}"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,9 @@ package kotlin.reflect.jvm.internal;
|
|||||||
import kotlin.jvm.internal.ReflectionFactory;
|
import kotlin.jvm.internal.ReflectionFactory;
|
||||||
import kotlin.reflect.*;
|
import kotlin.reflect.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @suppress
|
||||||
|
*/
|
||||||
@SuppressWarnings({"UnusedDeclaration", "unchecked"})
|
@SuppressWarnings({"UnusedDeclaration", "unchecked"})
|
||||||
public class ReflectionFactoryImpl extends ReflectionFactory {
|
public class ReflectionFactoryImpl extends ReflectionFactory {
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user