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

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

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

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

Loading…
Cancel
Save