Cleanup (test data)

master
Roman Shevchenko 8 years ago
parent a67808d3aa
commit 249903478c
  1. BIN
      testData/classes/pkg/TestStaticNameClash.class
  2. BIN
      testData/classes/pkg/TestSyntheticAccess$Assigner.class
  3. BIN
      testData/classes/pkg/TestSyntheticAccess$Incrementer.class
  4. BIN
      testData/classes/pkg/TestSyntheticAccess.class
  5. 10
      testData/results/TestStaticNameClash.dec
  6. 54
      testData/results/TestSyntheticAccess.dec
  7. 4
      testData/src/pkg/TestStaticNameClash.java
  8. 4
      testData/src/pkg/TestSyntheticAccess.java

@ -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

@ -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

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

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

Loading…
Cancel
Save