summaryrefslogtreecommitdiff
path: root/src/resolve/absolute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resolve/absolute.cpp')
-rw-r--r--src/resolve/absolute.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/resolve/absolute.cpp b/src/resolve/absolute.cpp
index 16728075..793975fe 100644
--- a/src/resolve/absolute.cpp
+++ b/src/resolve/absolute.cpp
@@ -1829,7 +1829,8 @@ void Resolve_Absolute_ImplItems(Context& item_context, ::AST::NamedList< ::AST:
),
(Static,
DEBUG("Static - " << i.name);
- TODO(i.data.span, "Resolve_Absolute_ImplItems - Static");
+ Resolve_Absolute_Type( item_context, e.type() );
+ Resolve_Absolute_Expr( item_context, e.value() );
)
)
}
@@ -1871,7 +1872,8 @@ void Resolve_Absolute_ImplItems(Context& item_context, ::std::vector< ::AST::Im
),
(Static,
DEBUG("Static - " << i.name);
- TODO(i.data->span, "Resolve_Absolute_ImplItems - Static");
+ Resolve_Absolute_Type( item_context, e.type() );
+ Resolve_Absolute_Expr( item_context, e.value() );
)
)
}