You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quick fix on name, to create the missing name attribute in Annot, will properly add the missing name attribute, but, in vscode, @Annot(name="foo") is still shown as having an error, so hitting the quick fix a second time will add a 2nd name member:
public @interface Annot {
Stringname();
Stringname();
}
Same issue happens when creating a missing method in another class. If I leave the 1st class that was showing the error and go back, the error doesn't show up, even though the new method was not saved in the 2nd class. Seems like diagnostic reporting is not properly updated
The text was updated successfully, but these errors were encountered:
Following on #262.
Not sure if it's related to the SharedASTProvider, but if you have
and
Quick fix on name, to create the missing name attribute in Annot, will properly add the missing name attribute, but, in vscode,
@Annot(name="foo")
is still shown as having an error, so hitting the quick fix a second time will add a 2nd name member:Same issue happens when creating a missing method in another class. If I leave the 1st class that was showing the error and go back, the error doesn't show up, even though the new method was not saved in the 2nd class. Seems like diagnostic reporting is not properly updated
The text was updated successfully, but these errors were encountered: