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
PROGRAM test_associate_block
IMPLICIT NONEREAL:: A(5), B(5,5), C, III =1
ASSOCIATE (ARRAY => B(:,1))
ARRAY (3) = ARRAY (1) + ARRAY (2)
END ASSOCIATE
END PROGRAM test_associate_block
I think we can get away with creating a function to parse the dimensions of arrays (see parse_fortan.py near the fortran_var AST node add.), then copy the keywords from the link_obj but impose our own keyword_info i.e. the slice.
The text was updated successfully, but these errors were encountered:
Describe the bug
hover over
ARRAY
shows the wrong dimensionI think we can get away with creating a function to parse the dimensions of arrays (see
parse_fortan.py
near thefortran_var
AST node add.), then copy the keywords from thelink_obj
but impose our ownkeyword_info
i.e. the slice.The text was updated successfully, but these errors were encountered: