Dear all,

I'm trying to implement an AST transformation to replace any `==` binary
expression with a equals method call invocation as suggested here
<https://stackoverflow.com/questions/28355773/in-groovy-why-does-the-behaviour-of-change-for-interfaces-extending-compar#comment45123447_28387391>
.


My understanding is that it's required to override each the visitor for
each node where a binary expression can appear ie. if statement, while
statement, assignment, for loop, method call, etc.

That looks a bit overkill. I was wondering if there's a better way to
replace globally all `==` binary expressions with `equals` method
invocations.


Cheers,
Paolo

Reply via email to