gumtree-spoon-ast-diff icon indicating copy to clipboard operation
gumtree-spoon-ast-diff copied to clipboard

"no AST change" when there are syntax errors

Open andre15silva opened this issue 1 year ago • 0 comments

For example, these two will result in "no AST change" when running the CLI on them

package gumtree.spoon.diff.operations;

import com.github.gumtreediff.actions.model.Insert;

public class InsertOperation extends AdditionOperation<Insert> {
	public InsertOperation(Insert action) {
		super(action);
	}
}
package gumtree.spoon.diff.operations;

import com.github.gumtreediff.actions.model.Insert;

public class InsertOperation extends AdditionOperation<Insert> {
	public InsertOperation(Insert action) {
		super(action)
	}
}

andre15silva avatar Feb 05 '24 09:02 andre15silva