fernflower/testData/results/TestClassFields.dec

22 lines
343 B
Plaintext
Raw Permalink Normal View History

package pkg;
2014-08-17 19:20:56 +02:00
public class TestClassFields {
private static int[] sizes;
private static String[] names = new String[]{"name1", "name2"};
static {
2014-12-25 21:36:19 +03:00
sizes = new int[names.length];// 26
2014-08-17 19:20:56 +02:00
}
}
2014-12-25 21:36:19 +03:00
class 'pkg/TestClassFields' {
method '<clinit> ()V' {
11 7
14 7
17 7
}
}
Lines mapping:
26 <-> 8