diff options
author | Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com> | 2024-03-21 19:25:52 +0100 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-08-01 16:52:28 +0200 |
commit | c083906944bc458c8ae4bc27956772c11db77785 (patch) | |
tree | d63b9866902ddfc37ebea8fc9843576752cca80c /gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h | |
parent | e126c71b36b03276957f36745bf6f8303833b751 (diff) | |
download | gcc-c083906944bc458c8ae4bc27956772c11db77785.zip gcc-c083906944bc458c8ae4bc27956772c11db77785.tar.gz gcc-c083906944bc458c8ae4bc27956772c11db77785.tar.bz2 |
gccrs: Fix use rebind name resolution.
Name resolution for rebind were missing.
gcc/rust/ChangeLog:
* resolve/rust-toplevel-name-resolver-2.0.cc (TopLevel::handle_use_glob):
Change function prototype to use a reference instead.
(TopLevel::handle_use_dec): Likewise.
(TopLevel::handle_rebind): Add name resolution on rebind use
declarations.
(flatten_rebind): Change prototype to accept a pair of path/alias.
(flatten_list): Adapt call to flatten_rebind.
(flatten): Adapt call to flatten_rebind.
(flatten_glob): Remove unused part.
(TopLevel::visit): Add rebind resolution.
* resolve/rust-toplevel-name-resolver-2.0.h: Adapt function prototypes.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Diffstat (limited to 'gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h')
-rw-r--r-- | gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h b/gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h index e226c79..fb16866 100644 --- a/gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h +++ b/gcc/rust/resolve/rust-toplevel-name-resolver-2.0.h @@ -108,8 +108,9 @@ private: // Call this on all the paths of a UseDec - so each flattened path in a // UseTreeList for example // FIXME: Should that return `found`? - bool handle_use_dec (AST::SimplePath path); - bool handle_use_glob (AST::SimplePath glob); + bool handle_use_dec (AST::SimplePath &path); + bool handle_use_glob (AST::SimplePath &glob); + bool handle_rebind (std::pair<AST::SimplePath, AST::UseTreeRebind> &pair); void visit (AST::UseDeclaration &use) override; }; |