We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4c8ec commit 01b6411Copy full SHA for 01b6411
src/main/java/org/eclipse/jdt/core/dom/CustomInfixExpression.xtend
@@ -12,4 +12,10 @@ class CustomInfixExpression extends InfixExpression {
12
this._customOperator = customOperator
13
}
14
15
+ override clone0(AST target) {
16
+ new CustomInfixExpression(target, customOperator) => [
17
+ setSourceRange(getStartPosition(), getLength());
18
+ ]
19
+ }
20
+
21
0 commit comments