fernflower/testData/results/TestClassNestedInitializer.dec

35 lines
612 B
Plaintext
Raw Normal View History

2014-09-11 08:18:02 -04:00
package pkg;
public class TestClassNestedInitializer {
public String secret;
public void test() {
TestClassNestedInitializer var1 = new TestClassNestedInitializer() {
{
this.secret = "one";
}
2014-12-25 13:36:19 -05:00
};// 22
System.out.println(var1.secret);// 23
2014-09-11 08:18:02 -04:00
}
}
2014-12-25 13:36:19 -05:00
class 'pkg/TestClassNestedInitializer$1' {
method '<init> (Lpkg/TestClassNestedInitializer;)V' {
a 8
c 8
}
}
class 'pkg/TestClassNestedInitializer' {
method 'test ()V' {
8 10
9 11
d 11
10 11
}
}
Lines mapping:
22 <-> 11
23 <-> 12