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
Similar to #3155, I am working on code completion based on AST nodes and came across this case for a field declaration, as another follow-up from #3156:
@Value(value=spring.)
results in an AST that looks like:
@Value(value.$missing$)
It looks like the parser turns this annotation into a SingleMemberAnnotation with a QualifiedName, where it should keep the usual member value pair structure.
Similar to #3155, I am working on code completion based on AST nodes and came across this case for a field declaration, as another follow-up from #3156:
results in an AST that looks like:
It looks like the parser turns this annotation into a
SingleMemberAnnotation
with aQualifiedName
, where it should keep the usual member value pair structure.(using
org.eclipse.jdt.core
3.40.0)@fyi @mickaelistria and @stephan-herrmann)
The text was updated successfully, but these errors were encountered: