enigma icon indicating copy to clipboard operation
enigma copied to clipboard

[bug] mapped names in annotation classes don’t show elsewhere

Open uniformization opened this issue 1 year ago • 0 comments

if i were to remap the methods inside an annotation class, references to those methods would will not show the mapped name where the annotation is implemented at

for example:

@Retention(RetentionPolicy.RUNTIME)
public @interface Example {
    String url(); // mapped "lw" to "url"
}
@Example(lw="https://example.com") // "lw" should be "url"
public class ExamplePage {}

uniformization avatar Feb 16 '23 17:02 uniformization