getting rid of TypeInfo
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
fun <P> foo(vararg tail: P) = 1
|
||||
|
||||
// method: namespace::foo
|
||||
// jvm signature: (Ljet/TypeInfo;[Ljava/lang/Object;)I
|
||||
// generic signature: <P:Ljava/lang/Object;>(Ljet/TypeInfo;[TP;)I
|
||||
// kotlin signature: <P:?Ljava/lang/Object;>(null[TP;)I
|
||||
// jvm signature: ([Ljava/lang/Object;)I
|
||||
// generic signature: <P:Ljava/lang/Object;>([TP;)I
|
||||
// kotlin signature: <P:?Ljava/lang/Object;>([TP;)I
|
||||
// TODO: skip kotlin signature
|
||||
// TODO: properly serialize typeinfo
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class ConstructorWithTypeParameter<P>()
|
||||
|
||||
// method: ConstructorWithTypeParameter::<init>
|
||||
// jvm signature: (Ljet/TypeInfo;)V
|
||||
// jvm signature: ()V
|
||||
// generic signature: null
|
||||
// kotlin signature: null
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
class ConstructorWithTypeParameter<P>(p: P)
|
||||
|
||||
// method: ConstructorWithTypeParameter::<init>
|
||||
// jvm signature: (Ljet/TypeInfo;Ljava/lang/Object;)V
|
||||
// generic signature: (Ljet/TypeInfo;TP;)V
|
||||
// jvm signature: (Ljava/lang/Object;)V
|
||||
// generic signature: (TP;)V
|
||||
// kotlin signature: null
|
||||
|
||||
Reference in New Issue
Block a user