eclipse-archived / ceylon-ide-eclipse

Eclipse Plugin for Ceylon
http://ceylon-lang.org/documentation/ide
Eclipse Public License 1.0
59 stars 28 forks source link

can't navigate to *members* of a Java annotation #1848

Closed bjansen closed 7 years ago

bjansen commented 7 years ago

While fixing https://github.com/ceylon/ceylon-ide-intellij/issues/570, I noticed that navigation to members of Java annotations doesn't work in Eclipse either.

import java.lang {
    suppressWarnings
}
suppressWarnings {
    \ivalue = {""};
}
shared void run() {}

We can navigate to SuppressWarnings, but not to value(). Similarly, the documentation popup works on suppressWarnings, but not on \ivalue.