]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
extern-types: Declare external types in name resolver.
authorArthur Cohen <arthur.cohen@embecosm.com>
Tue, 20 Feb 2024 13:53:32 +0000 (14:53 +0100)
committerCohenArthur <arthur.cohen@embecosm.com>
Thu, 29 Feb 2024 15:53:03 +0000 (15:53 +0000)
gcc/rust/ChangeLog:

* resolve/rust-ast-resolve-implitem.h: Declare external types as new
types.

gcc/rust/resolve/rust-ast-resolve-implitem.h

index fabc25817f5baf11252eb8c1766c347076a48435..4f4d2893f8325b2eefb4133eb9279b990dacf69c 100644 (file)
@@ -228,6 +228,25 @@ public:
     mappings->insert_module_child_item (current_module, decl);
   }
 
+  void visit (AST::ExternalTypeItem &type) override
+  {
+    auto decl = CanonicalPath::new_seg (type.get_node_id (),
+                                       type.get_identifier ().as_string ());
+    auto path = prefix.append (decl);
+
+    resolver->get_type_scope ().insert (
+      path, type.get_node_id (), type.get_locus (), false, Rib::ItemType::Type,
+      [&] (const CanonicalPath &, NodeId, location_t locus) -> void {
+       rich_location r (line_table, type.get_locus ());
+       r.add_range (locus);
+
+       rust_error_at (r, "redefined multiple times");
+      });
+
+    NodeId current_module = resolver->peek_current_module_scope ();
+    mappings->insert_module_child_item (current_module, decl);
+  }
+
 private:
   ResolveToplevelExternItem (const CanonicalPath &prefix)
     : ResolverBase (), prefix (prefix)