fernflower/testData/results/TestDeprecations.dec

79 lines
1.2 KiB
Plaintext
Raw Normal View History

2014-09-01 10:54:33 -04:00
package pkg;
2014-12-25 13:36:19 -05:00
public abstract class TestDeprecations {
2014-09-01 10:54:33 -04:00
/** @deprecated */
public int byComment;
/** @deprecated */
@Deprecated
public int byAnno;
/** @deprecated */
public void byComment() {
2014-12-25 13:36:19 -05:00
boolean var1 = true;// 27
2014-09-01 10:54:33 -04:00
}
2014-12-25 13:36:19 -05:00
/** @deprecated */
public abstract void byCommentAbstract();
2014-09-01 10:54:33 -04:00
/** @deprecated */
@Deprecated
public void byAnno() {
2014-12-25 13:36:19 -05:00
boolean var1 = true;// 35
2014-09-01 10:54:33 -04:00
}
2014-12-25 13:36:19 -05:00
/** @deprecated */
@Deprecated
public abstract void byAnnoAbstract();
2014-09-01 10:54:33 -04:00
/** @deprecated */
@Deprecated
public static class ByAnno {
2014-12-25 13:36:19 -05:00
int a = 5;
void foo() {
boolean var1 = true;// 55
}
2014-09-01 10:54:33 -04:00
}
/** @deprecated */
public static class ByComment {
2014-12-25 13:36:19 -05:00
int a = 5;
void foo() {
boolean var1 = true;// 46
}
2014-09-01 10:54:33 -04:00
}
}
2014-12-25 13:36:19 -05:00
class 'pkg/TestDeprecations' {
method 'byComment ()V' {
0 11
1 11
}
method 'byAnno ()V' {
0 20
1 20
}
}
class 'pkg/TestDeprecations$ByAnno' {
method 'foo ()V' {
0 33
1 33
}
}
class 'pkg/TestDeprecations$ByComment' {
method 'foo ()V' {
0 42
1 42
}
}
Lines mapping:
27 <-> 12
35 <-> 21
46 <-> 43
55 <-> 34