I'm wondering if it would be possible to navigate directly to the methods generated by Lombok using Intellij IDEA.
For instance, for this given example:
@Builder
public class AClass {
private String body;
}
trying to go to the implementation of AClass#builder
in an instruction like AClass.builder().build()
results in Intellij navigating to AClass
, instead of taking me to the real compiled method, which is generated under target
directory