aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/resolve/rust-rib.cc
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2023-07-21 18:22:43 +0200
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 19:00:26 +0100
commit5a0e099e892d575af167d6a0a7e9ae5f26f439d8 (patch)
tree50f1657f3f4c71e9c63d769be27bb5df388d9d2f /gcc/rust/resolve/rust-rib.cc
parent7c10950f544f7972317c848bec284af63981943d (diff)
downloadgcc-5a0e099e892d575af167d6a0a7e9ae5f26f439d8.zip
gcc-5a0e099e892d575af167d6a0a7e9ae5f26f439d8.tar.gz
gcc-5a0e099e892d575af167d6a0a7e9ae5f26f439d8.tar.bz2
gccrs: rib2.0: Add shadowing
gcc/rust/ChangeLog: * resolve/rust-rib.h: Add shadowing parameter. Make kind field public. * resolve/rust-rib.cc (Rib::insert): Likewise.
Diffstat (limited to 'gcc/rust/resolve/rust-rib.cc')
-rw-r--r--gcc/rust/resolve/rust-rib.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/rust/resolve/rust-rib.cc b/gcc/rust/resolve/rust-rib.cc
index 2cc9f3e..21fbe2c 100644
--- a/gcc/rust/resolve/rust-rib.cc
+++ b/gcc/rust/resolve/rust-rib.cc
@@ -36,13 +36,15 @@ Rib::Rib (Kind kind, std::unordered_map<std::string, NodeId> values)
{}
tl::expected<NodeId, DuplicateNameError>
-Rib::insert (std::string name, NodeId id)
+Rib::insert (std::string name, NodeId id, bool can_shadow)
{
auto res = values.insert ({name, id});
auto inserted_id = res.first->second;
+ auto existed = !res.second;
- // if we couldn't insert, the element already exists - exit with an error
- if (!res.second)
+ // if we couldn't insert, the element already exists - exit with an error,
+ // unless shadowing is allowed
+ if (existed && !can_shadow)
return tl::make_unexpected (DuplicateNameError (name, inserted_id));
// return the NodeId