Skip to content

Commit 01b6411

Browse files
committed
CustomInfixExpression.clone0
1 parent 9d4c8ec commit 01b6411

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/org/eclipse/jdt/core/dom/CustomInfixExpression.xtend

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,10 @@ class CustomInfixExpression extends InfixExpression {
1212
this._customOperator = customOperator
1313
}
1414

15+
override clone0(AST target) {
16+
new CustomInfixExpression(target, customOperator) => [
17+
setSourceRange(getStartPosition(), getLength());
18+
]
19+
}
20+
1521
}

0 commit comments

Comments
 (0)