fparser icon indicating copy to clipboard operation
fparser copied to clipboard

[symboltable] Improve data structures for holding information on module use statements

Open arporter opened this issue 4 years ago • 0 comments

#293 is adding basic symbol table functionality. However, it does not yet capture all available information on module use statements. In particular, if we have some code that does:

use my_mod
...
use my_mod, only: var

Then we know that all public symbols in my_mod are available and that one of them is named "var". Currently, we don't capture the latter.

arporter avatar Mar 03 '21 12:03 arporter