fix: check if structural is loaded

This commit is contained in:
egarette@silique.fr 2026-09-02 22:15:50 +02:00
parent 5fd22e56d4
commit daabd0d202

View file

@ -49,7 +49,7 @@ class Annotator(Walk):
hasattr(child, "hcl_type") and child.hcl_type == "block"
)
information_value = None
if child.hcl_type == "label":
if hasattr(child, "hcl_type") and child.hcl_type == "label":
if is_label == False:
raise Exception()
information_value = "label"
@ -70,9 +70,8 @@ class Annotator(Walk):
self.objectspace.informations.add(
child.path, "hcl_type", information_value
)
hcl_name = getattr(child, "hcl_name")
if hcl_name:
self.objectspace.informations.add(child.path, "hcl_name", hcl_name)
if hasattr(child, "hcl_name") and child.hcl_name:
self.objectspace.informations.add(child.path, "hcl_name", child.hcl_name)
return is_label
def parse_variable(self):