diff --git a/schala-lang/src/symbol_table/resolver.rs b/schala-lang/src/symbol_table/resolver.rs index 4dc368e..d92b406 100644 --- a/schala-lang/src/symbol_table/resolver.rs +++ b/schala-lang/src/symbol_table/resolver.rs @@ -46,6 +46,7 @@ impl<'a> ScopeResolver<'a> { /// This method correctly modifies the id_to_def table (ItemId) to have the appropriate /// mappings. fn lookup_name_in_scope(&mut self, name: &QualifiedName) { + //TODO this method badly needs attention let QualifiedName { id, components } = name; let local_name = components.first().unwrap().clone();