Community
Participate
Working Groups
When an ITD Field is applied to an interface, references to that field when the object is the interface type. Eg- bc.. aspect Aspect { int I.x; void method(I i) { i.x++; } } interface I { } bc.. Here, F3 on the x in i.x++; you should navigate to the declaration I.x; However, you are not. The reason is that ITDAwareSourceTypeInfo removes field ITDs from interfaces since when added they are always assumed to be public final static.