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
get_label_item constructs a dict from all the labels that could potentially be in the call chain and then looks up the label. This simplifies the look-up but we could probably refactor it to bail early once we've found it instead. Need to profile, but I feel like we can get a little bit of a speed up here, especially for larger projects.
We could also get rid of strip_type by adding a property to FortranVariable to return it, and use that in FortranVariable.full_type too.
The text was updated successfully, but these errors were encountered:
get_label_item
constructs a dict from all the labels that could potentially be in the call chain and then looks up the label. This simplifies the look-up but we could probably refactor it to bail early once we've found it instead. Need to profile, but I feel like we can get a little bit of a speed up here, especially for larger projects.We could also get rid of
strip_type
by adding a property toFortranVariable
to return it, and use that inFortranVariable.full_type
too.The text was updated successfully, but these errors were encountered: