Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/results/TestGenericArgs.dec

55 lines
947 B

package pkg;
public class TestGenericArgs {
private static <T> void genericSingle(Class<T> var0) {
}// 4
private static <T> void genericVarArgs(Class<T>... var0) {
}// 6
private static <T> void genericArray(Class<T>[] var0) {
}// 8
private static <T> void single(Class var0) {
}// 10
private static <T> void varArgs(Class... var0) {
}// 12
private static <T> void array(Class[] var0) {
}// 14
}
class 'pkg/TestGenericArgs' {
method 'genericSingle (Ljava/lang/Class;)V' {
0 4
}
method 'genericVarArgs ([Ljava/lang/Class;)V' {
0 7
}
method 'genericArray ([Ljava/lang/Class;)V' {
0 10
}
method 'single (Ljava/lang/Class;)V' {
0 13
}
method 'varArgs ([Ljava/lang/Class;)V' {
0 16
}
method 'array ([Ljava/lang/Class;)V' {
0 19
}
}
Lines mapping:
4 <-> 5
6 <-> 8
8 <-> 11
10 <-> 14
12 <-> 17
14 <-> 20