gumtree-spoon-ast-diff
gumtree-spoon-ast-diff copied to clipboard
Output messages in case of Modifiable elements
Case 1
Input: 1.java
package com.test;
class TestClass {
private int a;
TestClass() {
}
}
2.java
package com.test;
class TestClass {
public int a;
TestClass() {
}
}
Output:
Update Wra at com.test.TestClass
to public
Case 2
Input: same as above with the following diff 2.java
- public int a;
+ int a;
Output:
Delete VirtualEle at com.test.TestClass