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
Hovering over variables that have been associated in an ASSOCIATE block yield no signature.
program test
implicit noneinteger:: a
testing: associate(c => 1)
print*, c
end associate testing
associate(c => a)
print*, c
end associate
end program test
The text was updated successfully, but these errors were encountered:
Fixes#62
Adds rudimentary hover support for hovering over associate blocks
TODO:
- Support slices of existing AST nodes, currently the associate node
inherits the keywords from the link_obj so the slices display
the wrong dimensions.
- Support literals, given that Fortran literals are not currently
registered as AST nodes it is difficult to provide information on
the fly without creating more spaghetti code (see current literals).
The only elegant solution I can think of is parsing the literals as
AST nodes.
Hovering over variables that have been associated in an
ASSOCIATE
block yield no signature.The text was updated successfully, but these errors were encountered: