enigma
enigma copied to clipboard
[bug] mapped names in annotation classes don’t show elsewhere
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 {}