Skip to content

Commit

Permalink
#2125 add TODOs to LFRicTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
arporter committed Jul 12, 2024
1 parent 018aee4 commit 23c57d7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/psyclone/domain/lfric/lfric_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,14 @@ def _create_precision_from_const_module():
# Generate LFRic module symbols from definitions
for module_info in modules:
module_name = module_info.name.lower()
# Create the module (using a PSyIR ContainerSymbol)
# Create the module (using a PSyIR ContainerSymbol).
# TODO #2659 - this ContainerSymbol should be added to
# a SymbolTable!
LFRicTypes._name_to_class[module_name] = \
ContainerSymbol(module_info.name)
# Create the variables specified by the module (using
# PSyIR DataSymbols)
# PSyIR DataSymbols). TODO #2659 - these DataSymbols should
# be added to a SymbolTable!
for module_var in module_info.vars:
var_name = module_var.upper()
interface = ImportInterface(LFRicTypes(module_name))
Expand Down

0 comments on commit 23c57d7

Please sign in to comment.