Cleanup (test data)

This commit is contained in:
Roman Shevchenko
2016-04-21 15:49:10 +02:00
parent a67808d3aa
commit 249903478c
8 changed files with 32 additions and 40 deletions

View File

@@ -3,9 +3,9 @@ package pkg;
public class TestStaticNameClash {
public static String property;
public static void setProperty(String property) {
TestStaticNameClash.property = property;// 12
}// 13
public static void setProperty(String var0) {
property = var0;// 8
}// 9
}
class 'pkg/TestStaticNameClash' {
@@ -16,5 +16,5 @@ class 'pkg/TestStaticNameClash' {
}
Lines mapping:
12 <-> 7
13 <-> 8
8 <-> 7
9 <-> 8

View File

@@ -6,34 +6,34 @@ class TestSyntheticAccess {
private class Assigner {
void assignI(int var1) {
TestSyntheticAccess.this.i = var1;// 36
}// 37
TestSyntheticAccess.this.i = var1;// 32
}// 33
void assignS(int var1) {
TestSyntheticAccess.s = var1;// 40
}// 41
TestSyntheticAccess.s = var1;// 36
}// 37
}
private class Incrementer {
void orI() {
TestSyntheticAccess.this.i = TestSyntheticAccess.this.i | 1;// 14
}// 15
TestSyntheticAccess.this.i = TestSyntheticAccess.this.i | 1;// 10
}// 11
void incrementI() {
TestSyntheticAccess.this.i++;// 18
}// 19
TestSyntheticAccess.this.i++;// 14
}// 15
void decrementI() {
--TestSyntheticAccess.this.i;// 22
}// 23
--TestSyntheticAccess.this.i;// 18
}// 19
void incrementS() {
++TestSyntheticAccess.s;// 26 27
++TestSyntheticAccess.s;// 22 23
}
void decrementS() {
TestSyntheticAccess.s--;// 30
}// 31
TestSyntheticAccess.s--;// 26
}// 27
}
}
@@ -83,17 +83,17 @@ class 'pkg/TestSyntheticAccess$Incrementer' {
}
Lines mapping:
14 <-> 19
15 <-> 20
18 <-> 23
19 <-> 24
22 <-> 27
23 <-> 28
26 <-> 31
27 <-> 31
30 <-> 35
31 <-> 36
36 <-> 9
37 <-> 10
40 <-> 13
41 <-> 14
10 <-> 19
11 <-> 20
14 <-> 23
15 <-> 24
18 <-> 27
19 <-> 28
22 <-> 31
23 <-> 31
26 <-> 35
27 <-> 36
32 <-> 9
33 <-> 10
36 <-> 13
37 <-> 14

View File

@@ -1,9 +1,5 @@
package pkg;
/**
* @author Alexandru-Constantin Bledea
* @since March 07, 2016
*/
public class TestStaticNameClash {
public static String property;

View File

@@ -1,9 +1,5 @@
package pkg;
/**
* @author Alexandru-Constantin Bledea
* @since March 20, 2016
*/
class TestSyntheticAccess {
private static int s;