Reproduction: ```java @Builder() class Hello { private String message; } Hello.builder().message("hello"); ``` Navigation from the call-site `message("hello")` goes to the `@Builder()` annotation instead of the `message` field. See PR https://github.com/sourcegraph/lsif-java/pull/383 for a minimized reproduction.